From 974c1987a1be41ba655d40c599b64856aa436b7c Mon Sep 17 00:00:00 2001 From: Romain Lenzotti Date: Tue, 10 Dec 2024 21:15:04 +0100 Subject: [PATCH] fix: fix @tsed/logger version on each package.json --- .gflowrc | 4 +- .github/workflows/build.yml | 85 ++++++++---------- benchmarks/README.md | 6 +- docs-references/.vuepress/config.js | 2 +- docs/.vuepress/config.base.js | 6 +- docs/.vuepress/config.js | 2 +- docs/docs/logger.md | 2 +- docs/tutorials/mikroorm.md | 2 +- package.json | 49 +---------- packages/core/readme.md | 10 +-- packages/di/package.json | 6 +- packages/di/readme.md | 12 +-- packages/engines/readme.md | 8 +- packages/graphql/apollo/package.json | 6 +- packages/graphql/apollo/readme.md | 10 +-- packages/graphql/graphql-legacy/readme.md | 10 +-- packages/graphql/typegraphql/readme.md | 8 +- packages/orm/adapters-redis/readme.md | 10 +-- packages/orm/adapters/readme.md | 10 +-- packages/orm/ioredis/readme.md | 10 +-- packages/orm/mikro-orm/package.json | 6 +- packages/orm/mikro-orm/readme.md | 12 +-- packages/orm/mongoose/package.json | 6 +- packages/orm/mongoose/readme.md | 10 +-- packages/orm/objection/readme.md | 10 +-- packages/orm/prisma/readme.md | 8 +- packages/orm/testing-mongoose/readme.md | 10 +-- packages/orm/typeorm/readme.md | 12 +-- packages/perf/readme.md | 8 +- packages/platform/common/package.json | 10 +-- packages/platform/common/readme.md | 14 +-- packages/platform/platform-aws/readme.md | 12 +-- packages/platform/platform-cache/readme.md | 10 +-- .../platform/platform-exceptions/readme.md | 10 +-- .../platform/platform-express/package.json | 4 +- packages/platform/platform-express/readme.md | 10 +-- packages/platform/platform-koa/package.json | 4 +- packages/platform/platform-koa/readme.md | 10 +-- .../platform-log-middleware/readme.md | 10 +-- .../platform/platform-middlewares/readme.md | 10 +-- packages/platform/platform-params/readme.md | 10 +-- .../platform-response-filter/readme.md | 10 +-- .../platform-serverless-http/package.json | 4 +- .../platform-serverless-http/readme.md | 10 +-- .../platform-serverless-testing/package.json | 4 +- .../platform-serverless-testing/readme.md | 10 +-- .../platform/platform-serverless/package.json | 4 +- .../platform/platform-serverless/readme.md | 12 +-- .../src/tests/testResponse.ts | 2 +- packages/platform/platform-views/readme.md | 10 +-- packages/security/jwks/readme.md | 8 +- packages/security/oidc-provider/readme.md | 10 +-- .../oidc-provider/test/app/views/index.ejs | 2 +- packages/security/passport/readme.md | 10 +-- packages/specs/ajv/readme.md | 8 +- packages/specs/exceptions/readme.md | 8 +- packages/specs/json-mapper/readme.md | 10 +-- packages/specs/openspec/readme.md | 12 +-- packages/specs/schema/readme.md | 12 +-- packages/specs/swagger/readme.md | 16 ++-- packages/third-parties/agenda/readme.md | 10 +-- .../async-hook-context/readme.md | 8 +- .../third-parties/components-scan/readme.md | 8 +- .../third-parties/event-emitter/readme.md | 10 +-- packages/third-parties/formio-types/readme.md | 12 +-- packages/third-parties/formio/readme.md | 10 +-- .../formio/test/app/views/index.ejs | 2 +- .../third-parties/schema-formio/readme.md | 12 +-- packages/third-parties/seq/package.json | 6 +- packages/third-parties/seq/readme.md | 12 +-- .../third-parties/socketio-testing/readme.md | 24 ++--- packages/third-parties/socketio/package.json | 4 +- packages/third-parties/socketio/readme.md | 24 ++--- packages/third-parties/stripe/readme.md | 10 +-- .../stripe/test/app/views/index.ejs | 2 +- packages/third-parties/terminus/readme.md | 8 +- .../third-parties/vite-ssr-plugin/readme.md | 10 +-- readme.md | 14 +-- team.json | 2 +- tools/integration/views/swagger.ejs | 2 +- yarn.lock | 88 +++++++++++-------- 81 files changed, 427 insertions(+), 467 deletions(-) diff --git a/.gflowrc b/.gflowrc index 272a63099bb..7f970f0f070 100644 --- a/.gflowrc +++ b/.gflowrc @@ -1,8 +1,8 @@ { "flow": "gflow", "remote": "origin", - "develop": "production", - "production": "production", + "develop": "6.x", + "production": "6.x", "ignores": [], "syncAfterFinish": false, "postFinish": "", diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d8484411ba..eb24e25b131 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies @@ -32,24 +32,15 @@ jobs: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - node-version: [14.x, 16.x, 18.x] - exclude: - - os: macos-latest - node-version: 18.x - - os: macos-latest - node-version: 14.x - - os: windows-latest - node-version: 18.x - - os: windows-latest - node-version: 14.x + os: [ubuntu-latest] + node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies @@ -67,17 +58,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:core --since origin/production + run: yarn test:core --since origin/6.x test-specs: runs-on: ubuntu-latest @@ -87,17 +78,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:specs --since origin/production + run: yarn test:specs --since origin/6.x test-platform: runs-on: ubuntu-latest @@ -107,17 +98,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:platform --since origin/production + run: yarn test:platform --since origin/6.x test-orm: runs-on: ubuntu-latest @@ -127,17 +118,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:orm --since origin/production + run: yarn test:orm --since origin/6.x test-graphql: runs-on: ubuntu-latest @@ -147,17 +138,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:graphql --since origin/production + run: yarn test:graphql --since origin/6.x test-security: runs-on: ubuntu-latest @@ -167,17 +158,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:security --since origin/production + run: yarn test:security --since origin/6.x test-third-parties: runs-on: ubuntu-latest @@ -187,17 +178,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:third-parties --since origin/production + run: yarn test:third-parties --since origin/6.x test-formio: runs-on: ubuntu-latest @@ -207,17 +198,17 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines - name: Run test - run: yarn test:formio --since origin/production + run: yarn test:formio --since origin/6.x build: runs-on: ubuntu-latest @@ -227,9 +218,9 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies @@ -254,7 +245,7 @@ jobs: build ] if: github.event_name != 'pull_request' && contains(' - refs/heads/production + refs/heads/6.x refs/heads/alpha refs/heads/beta refs/heads/rc @@ -265,9 +256,9 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies @@ -288,11 +279,11 @@ jobs: node-version: [16.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: - ref: "production" + ref: "6.x" - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install dependencies diff --git a/benchmarks/README.md b/benchmarks/README.md index b726d2d1bde..02f86f8f9e3 100644 --- a/benchmarks/README.md +++ b/benchmarks/README.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -18,9 +18,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   diff --git a/docs-references/.vuepress/config.js b/docs-references/.vuepress/config.js index 4f6d75739d1..196b0ebb661 100644 --- a/docs-references/.vuepress/config.js +++ b/docs-references/.vuepress/config.js @@ -5,7 +5,7 @@ const conf = settings({ description: "A Node.js and TypeScript Framework on top of Express/Koa.js. It provides a lot of decorators and guidelines to write your code.", url: "https://api-docs.tsed.io", - base: "https://tsed.io", + base: "https://tsed.dev", api: require("../../docs/.vuepress/public/api.json"), apiRedirectUrl: "", themeConfig: { diff --git a/docs/.vuepress/config.base.js b/docs/.vuepress/config.base.js index b74024e02d7..5d753bd7bd0 100644 --- a/docs/.vuepress/config.base.js +++ b/docs/.vuepress/config.base.js @@ -43,13 +43,13 @@ module.exports = ({title, description, base = "", url, apiRedirectUrl = "", them openCollective: "https://api.tsed.io/rest/opencollective", slackUrl: "https://api.tsed.io/rest/slack/tsedio/tsed", stackoverflowUrl: "https://stackoverflow.com/search?q=tsed", - sponsorUrl: "https://tsed.io/support.html", + sponsorUrl: "https://tsed.dev/support.html", twitterUrl: "https://twitter.com/TsED_io", editLinks: true, docsDir: "docs", sidebar: "auto", docsBranch: "production", - apiUrl: "https://tsed.io/api.json", + apiUrl: "https://tsed.dev/api.json", apiRedirectUrl, smoothScroll: true, lastUpdated: "Last updated", @@ -321,7 +321,7 @@ module.exports = ({title, description, base = "", url, apiRedirectUrl = "", them children: [ { title: "Migrate to v7", - path: `https://tsed.io/getting-started/migration-from-v6` + path: `https://tsed.dev/getting-started/migration-from-v6` }, { title: "Migrate from v5", diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 6050a2b2ef2..97067a66fb9 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -2,6 +2,6 @@ module.exports = require("./config.base")({ title: "Ts.ED - A Node.js and TypeScript Framework on top of Express/Koa.js.", description: "A Node.js and TypeScript Framework on top of Express/Koa.js. It provides a lot of decorators and guidelines to write your code.", - url: "https://tsed.io", + url: "https://tsed.dev", apiRedirectUrl: "https://api-docs.tsed.io" }); diff --git a/docs/docs/logger.md b/docs/docs/logger.md index cdd30f66b2d..fe0eaa069dd 100644 --- a/docs/docs/logger.md +++ b/docs/docs/logger.md @@ -29,7 +29,7 @@ Ts.ED logger supports many features, and is optimized to be used in production. - [LogStash UDP](https://logger.tsed.io/appenders/logstash-udp.html). - [Loggly](https://logger.tsed.io/appenders/loggly.html). - [RabbitMQ](https://logger.tsed.io/appenders/rabbitmq.html). - - [Seq](https://tsed.io/tutorials/seq.html). + - [Seq](https://tsed.dev/tutorials/seq.html). - [Slack](https://logger.tsed.io/appenders/slack.html). - [Smtp](https://logger.tsed.io/appenders/smtp.html). - @@ContextLogger@@, in **production** mode, caches all request logs until the response is sent to your consumer. See [request logger](/docs/logger.html#request-logger) section bellow. diff --git a/docs/tutorials/mikroorm.md b/docs/tutorials/mikroorm.md index 0b31770d663..356a071b0bd 100644 --- a/docs/tutorials/mikroorm.md +++ b/docs/tutorials/mikroorm.md @@ -197,7 +197,7 @@ export class User { } ``` -Now, the model is correctly defined and can be used with a [Controller](https://tsed.io/docs/controllers.html) +Now, the model is correctly defined and can be used with a [Controller](https://tsed.dev/docs/controllers.html) , [AJV validation](/tutorials/ajv.md), [Swagger](/tutorials/swagger.md) and [MikroORM](https://mikro-orm.io/docs/defining-entities). diff --git a/package.json b/package.json index 82293a0ec98..154e1e15448 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "private": true, "author": "Romain Lenzotti", "license": "MIT", - "homepage": "https://tsed.io/", + "homepage": "https://tsed.dev/", "bugs": { "url": "https://github.com/tsedio/tsed/issues" }, @@ -99,7 +99,7 @@ "multer" ], "dependencies": { - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "ajv": "8.11.0", "axios": "0.27.2", "barrelsby": "^2.3.2", @@ -205,49 +205,8 @@ "dir": "./docs/.vuepress/dist", "url": "https://github.com/tsedio/v6.tsed.io.git", "branch": "main", - "cname": "v6.tsed.io" + "cname": "v6.tsed.dev" } - ], - "examples": { - "dir": "./examples", - "repositories": { - "getting-started": { - "url": "https://github.com/tsedio/tsed-getting-started.git" - }, - "aws": { - "url": "https://github.com/tsedio/tsed-example-aws.git" - }, - "mongoose": { - "url": "https://github.com/tsedio/tsed-example-mongoose.git" - }, - "multer": { - "url": "https://github.com/tsedio/tsed-example-multer.git" - }, - "passportjs": { - "url": "https://github.com/tsedio/tsed-example-passportjs.git" - }, - "typeorm": { - "url": "https://github.com/tsedio/tsed-example-typeorm.git" - }, - "session": { - "url": "https://github.com/tsedio/tsed-example-session.git" - }, - "socketio": { - "url": "https://github.com/tsedio/tsed-example-socketio.git" - }, - "vuejs": { - "url": "https://github.com/tsedio/tsed-example-vuejs.git" - }, - "react": { - "url": "https://github.com/tsedio/tsed-example-react.git" - }, - "graphql": { - "url": "https://github.com/tsedio/tsed-example-graphql.git" - }, - "webpack": { - "url": "https://github.com/tsedio/tsed-example-webpack.git" - } - } - } + ] } } diff --git a/packages/core/readme.md b/packages/core/readme.md index a3541eaed6a..c8870e30f7a 100644 --- a/packages/core/readme.md +++ b/packages/core/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/core ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/di/package.json b/packages/di/package.json index b1fd48257fd..58143ee7b5f 100644 --- a/packages/di/package.json +++ b/packages/di/package.json @@ -25,12 +25,12 @@ }, "devDependencies": { "@tsed/core": "6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/schema": "6.133.1" }, "peerDependencies": { "@tsed/core": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/schema": "^6.133.1" }, "peerDependenciesMeta": { @@ -44,4 +44,4 @@ "optional": false } } -} \ No newline at end of file +} diff --git a/packages/di/readme.md b/packages/di/readme.md index d6e3fd14baf..a17fcacd6fb 100644 --- a/packages/di/readme.md +++ b/packages/di/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -147,11 +147,11 @@ To organize your code Ts.ED DI provide different kind of providers: - Interceptor can be declared with `@Interceptor`, - Factory and Value can be declared with `registerFactory` and `registerValue`. -See more details on our documentation https://tsed.io/providers.html +See more details on our documentation https://tsed.dev/providers.html ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/engines/readme.md b/packages/engines/readme.md index e4b279c5d10..803328ac101 100644 --- a/packages/engines/readme.md +++ b/packages/engines/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -15,9 +15,9 @@
- Website + Website   •   - Templating with Ts.ED + Templating with Ts.ED   •   Slack   •   @@ -266,7 +266,7 @@ export class CustomePugEngine extends PugEngine { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/graphql/apollo/package.json b/packages/graphql/apollo/package.json index 1a8cb276797..dc1fd53bead 100644 --- a/packages/graphql/apollo/package.json +++ b/packages/graphql/apollo/package.json @@ -27,7 +27,7 @@ "@tsed/common": "6.133.1", "@tsed/core": "6.133.1", "@tsed/di": "6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@types/graphql": "14.5.0", "apollo-datasource": "^3.2.0", "apollo-datasource-rest": "^3.3.0", @@ -41,10 +41,10 @@ "@tsed/common": "^6.133.1", "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "apollo-datasource": ">=3.0.0", "apollo-datasource-rest": ">=3.0.0", "apollo-server-core": ">=3.0.0", "graphql": ">15.0.0" } -} \ No newline at end of file +} diff --git a/packages/graphql/apollo/readme.md b/packages/graphql/apollo/readme.md index 0299308e25e..0887a5e5bb2 100644 --- a/packages/graphql/apollo/readme.md +++ b/packages/graphql/apollo/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -18,9 +18,9 @@
- Website + Website   •   - TypeGraphQL + TypeGraphQL   •   Slack   •   @@ -39,7 +39,7 @@ GraphQL is a query language for APIs and a runtime for fulfilling those queries ## TypeGraphQL -If you're looking for integration with TypeGraphQL see the [`@tsed/typegraphql`](https://tsed.io/graphql.html#typegraphql) package. +If you're looking for integration with TypeGraphQL see the [`@tsed/typegraphql`](https://tsed.dev/graphql.html#typegraphql) package. ## Installation @@ -95,7 +95,7 @@ For more information about ApolloServer look his documentation [here](https://ww ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/graphql/graphql-legacy/readme.md b/packages/graphql/graphql-legacy/readme.md index 41288ccb4d9..c817173fbe0 100644 --- a/packages/graphql/graphql-legacy/readme.md +++ b/packages/graphql/graphql-legacy/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -18,9 +18,9 @@
- Website + Website   •   - TypeGraphQL + TypeGraphQL   •   Slack   •   @@ -29,7 +29,7 @@
-> A package of Ts.ED framework. See website: https://tsed.io/tutorials/graphql.html +> A package of Ts.ED framework. See website: https://tsed.dev/tutorials/graphql.html GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools. @@ -176,7 +176,7 @@ export class RecipeResolver { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/graphql/typegraphql/readme.md b/packages/graphql/typegraphql/readme.md index 3811e693db3..5f7f08e61ba 100644 --- a/packages/graphql/typegraphql/readme.md +++ b/packages/graphql/typegraphql/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -18,9 +18,9 @@
- Website + Website   •   - TypeGraphQL + TypeGraphQL   •   Slack   •   @@ -174,7 +174,7 @@ export class RecipeResolver { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/adapters-redis/readme.md b/packages/orm/adapters-redis/readme.md index bf4c80fee22..6ad0f0ab45a 100644 --- a/packages/orm/adapters-redis/readme.md +++ b/packages/orm/adapters-redis/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,11 +28,11 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/adapters +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/adapters ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/adapters/readme.md b/packages/orm/adapters/readme.md index 4c80a7ecb1d..c10282bc173 100644 --- a/packages/orm/adapters/readme.md +++ b/packages/orm/adapters/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,11 +28,11 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/adapters +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/adapters ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/ioredis/readme.md b/packages/orm/ioredis/readme.md index 6a3796291be..bf27fc45ce2 100644 --- a/packages/orm/ioredis/readme.md +++ b/packages/orm/ioredis/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/redis.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/redis.html ## Features @@ -253,7 +253,7 @@ describe("IORedisTest", () => { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/mikro-orm/package.json b/packages/orm/mikro-orm/package.json index a3979258d37..cb38c50ac3d 100644 --- a/packages/orm/mikro-orm/package.json +++ b/packages/orm/mikro-orm/package.json @@ -30,7 +30,7 @@ "@tsed/core": "6.133.1", "@tsed/di": "6.133.1", "@tsed/json-mapper": "6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/schema": "6.133.1", "@tsed/testing-mongoose": "6.133.1", "ts-mockito": "^2.6.1" @@ -40,6 +40,6 @@ "@tsed/common": "^6.133.1", "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", - "@tsed/logger": ">=6.2.2" + "@tsed/logger": "^6.7.8" } -} \ No newline at end of file +} diff --git a/packages/orm/mikro-orm/readme.md b/packages/orm/mikro-orm/readme.md index 2f64023a221..13503f4e423 100644 --- a/packages/orm/mikro-orm/readme.md +++ b/packages/orm/mikro-orm/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/mikro-orm +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/mikro-orm ## Feature @@ -217,7 +217,7 @@ export class User { } ``` -Now, the model is correctly defined and can be used with a [Controller](https://tsed.io/docs/controllers.html) +Now, the model is correctly defined and can be used with a [Controller](https://tsed.dev/docs/controllers.html) , [AJV validation](tutorials/ajv.md), [Swagger](tutorials/swagger.md) and [MikroORM](https://mikro-orm.io/docs/defining-entities). @@ -391,7 +391,7 @@ export class UsersCtrl { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/mongoose/package.json b/packages/orm/mongoose/package.json index f3186ea6bd9..1db47ab9ffe 100644 --- a/packages/orm/mongoose/package.json +++ b/packages/orm/mongoose/package.json @@ -36,7 +36,7 @@ "@tsed/core": "6.133.1", "@tsed/di": "6.133.1", "@tsed/json-mapper": "6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/schema": "6.133.1", "mongoose": "6.5.1" }, @@ -45,8 +45,8 @@ "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/schema": "^6.133.1", "mongoose": ">=6.0.0" } -} \ No newline at end of file +} diff --git a/packages/orm/mongoose/readme.md b/packages/orm/mongoose/readme.md index 84139df9286..ad60d3be831 100644 --- a/packages/orm/mongoose/readme.md +++ b/packages/orm/mongoose/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/mongoose.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/mongoose.html ## Features @@ -346,7 +346,7 @@ For further information, please refer to the [mongoose documentation about discr ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/objection/readme.md b/packages/orm/objection/readme.md index be6c082e1d4..0ef27f29242 100644 --- a/packages/orm/objection/readme.md +++ b/packages/orm/objection/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/objection.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/objection.html ## Feature @@ -79,7 +79,7 @@ class Server {} ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/prisma/readme.md b/packages/orm/prisma/readme.md index d02197c55dc..88f18d30498 100644 --- a/packages/orm/prisma/readme.md +++ b/packages/orm/prisma/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -15,9 +15,9 @@
- Website + Website   •   - Tutorial + Tutorial   •   Slack   •   @@ -297,7 +297,7 @@ export class UserModel implements User { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/testing-mongoose/readme.md b/packages/orm/testing-mongoose/readme.md index de37137caac..abd57b55828 100644 --- a/packages/orm/testing-mongoose/readme.md +++ b/packages/orm/testing-mongoose/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ This package is an helper to create unit test base on `@tsed/mongoose` package. @@ -139,7 +139,7 @@ module.exports = async () => { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/orm/typeorm/readme.md b/packages/orm/typeorm/readme.md index f28836705ba..f1401ab6629 100644 --- a/packages/orm/typeorm/readme.md +++ b/packages/orm/typeorm/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/typeorm +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/typeorm ## Feature @@ -155,7 +155,7 @@ export class User { } ``` -Now, the model is correctly defined and can be used with a [Controller](https://tsed.io/docs/controllers.html), [AJV validation](tutorials/ajv.md), +Now, the model is correctly defined and can be used with a [Controller](https://tsed.dev/docs/controllers.html), [AJV validation](tutorials/ajv.md), [Swagger](tutorials/swagger.md) and [TypeORM](https://github.com/typeorm/typeorm). We can use this model with a Controller like that: @@ -181,7 +181,7 @@ export class UsersCtrl { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/perf/readme.md b/packages/perf/readme.md index 8857358af2e..33eeca3d33f 100644 --- a/packages/perf/readme.md +++ b/packages/perf/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -72,7 +72,7 @@ Will output: ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/common/package.json b/packages/platform/common/package.json index 345cd4c3c82..6bf19fc14dc 100644 --- a/packages/platform/common/package.json +++ b/packages/platform/common/package.json @@ -72,8 +72,8 @@ "@tsed/di": "6.133.1", "@tsed/exceptions": "6.133.1", "@tsed/json-mapper": "6.133.1", - "@tsed/logger": ">=6.2.2", - "@tsed/logger-file": ">=6.2.2", + "@tsed/logger": "^6.7.8", + "@tsed/logger-file": "^6.7.8", "@tsed/perf": "6.133.1", "@tsed/platform-cache": "6.133.1", "@tsed/platform-exceptions": "6.133.1", @@ -90,8 +90,8 @@ "uuid": "8.3.2" }, "peerDependencies": { - "@tsed/logger": ">=6.2.2", - "@tsed/logger-file": ">=6.2.2" + "@tsed/logger": "^6.7.8", + "@tsed/logger-file": "^6.7.8" }, "peerDependenciesMeta": { "@tsed/logger": { @@ -102,4 +102,4 @@ } }, "devDependencies": {} -} \ No newline at end of file +} diff --git a/packages/platform/common/readme.md b/packages/platform/common/readme.md index d9563f71e12..4ac75a1a515 100644 --- a/packages/platform/common/readme.md +++ b/packages/platform/common/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -55,16 +55,16 @@ to make your code more readable and less error-prone. ## Documentation -Documentation is available on [https://tsed.io](https://tsed.io) +Documentation is available on [https://tsed.dev](https://tsed.dev) ## Getting started -See our [getting started here](https://tsed.io/getting-started/) to create new Ts.ED project or use +See our [getting started here](https://tsed.dev/getting-started/) to create new Ts.ED project or use our [CLI](https://cli.tsed.io) ## Examples -Examples are available on [https://tsed.io/tutorials/](https://tsed.io/tutorials/) +Examples are available on [https://tsed.dev/tutorials/](https://tsed.dev/tutorials/) ## Overview @@ -111,7 +111,7 @@ async function bootstrap() { bootstrap(); ``` -To customize the server settings see [Configure server with decorator](https://tsed.io/docs/configuration.md) +To customize the server settings see [Configure server with decorator](https://tsed.dev/docs/configuration.md) #### Controller example diff --git a/packages/platform/platform-aws/readme.md b/packages/platform/platform-aws/readme.md index 6563e6a6a07..b5f3c7d5bf4 100644 --- a/packages/platform/platform-aws/readme.md +++ b/packages/platform/platform-aws/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -30,7 +30,7 @@ **IMPORTANT:** This package is deprecated in favor of `@tsed/platform-serverless-http` or `@tsed/platform-serverless`. Please don't use this package for new project! -A package of Ts.ED framework. See website: https://tsed.io/tutorials/aws.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/aws.html ## Installation @@ -56,7 +56,7 @@ PlatformAws.bootstrap(Server, { // mime types list ] } - // additional Ts.ED options. See https://tsed.io/tutorials/aws.html + // additional Ts.ED options. See https://tsed.dev/tutorials/aws.html }); // Handler used by AWS @@ -98,7 +98,7 @@ class MyCtrl { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/platform/platform-cache/readme.md b/packages/platform/platform-cache/readme.md index c43b8bd71a0..3258696ec55 100644 --- a/packages/platform/platform-cache/readme.md +++ b/packages/platform/platform-cache/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/docs/cache.html +A package of Ts.ED framework. See website: https://tsed.dev/docs/cache.html # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/platform-cache ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-exceptions/readme.md b/packages/platform/platform-exceptions/readme.md index 995bc151276..4c0520a1f8a 100644 --- a/packages/platform/platform-exceptions/readme.md +++ b/packages/platform/platform-exceptions/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/platform-exceptions ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-express/package.json b/packages/platform/platform-express/package.json index c01db6693e1..4b09c524e59 100644 --- a/packages/platform/platform-express/package.json +++ b/packages/platform/platform-express/package.json @@ -86,7 +86,7 @@ "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/openspec": "^6.133.1", "@tsed/platform-views": "^6.133.1", "@tsed/schema": "^6.133.1", @@ -123,4 +123,4 @@ "optional": false } } -} \ No newline at end of file +} diff --git a/packages/platform/platform-express/readme.md b/packages/platform/platform-express/readme.md index 603f214fef2..31db414ab29 100644 --- a/packages/platform/platform-express/readme.md +++ b/packages/platform/platform-express/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/getting-started/ +A package of Ts.ED framework. See website: https://tsed.dev/getting-started/ ## Installation @@ -41,7 +41,7 @@ npm install --save-dev @types/express ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/platform/platform-koa/package.json b/packages/platform/platform-koa/package.json index 50265d7b23d..795b530f495 100644 --- a/packages/platform/platform-koa/package.json +++ b/packages/platform/platform-koa/package.json @@ -89,7 +89,7 @@ "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/openspec": "^6.133.1", "@tsed/schema": "^6.133.1", "koa": ">=2.13.0", @@ -126,4 +126,4 @@ "optional": false } } -} \ No newline at end of file +} diff --git a/packages/platform/platform-koa/readme.md b/packages/platform/platform-koa/readme.md index 701322f97e9..e5bd4e44baf 100644 --- a/packages/platform/platform-koa/readme.md +++ b/packages/platform/platform-koa/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/getting-started/ +A package of Ts.ED framework. See website: https://tsed.dev/getting-started/ ## Installation @@ -41,7 +41,7 @@ npm install --save-dev @types/koa ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/platform/platform-log-middleware/readme.md b/packages/platform/platform-log-middleware/readme.md index db540d5f4b5..87725ad6e17 100644 --- a/packages/platform/platform-log-middleware/readme.md +++ b/packages/platform/platform-log-middleware/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/platform-params ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-middlewares/readme.md b/packages/platform/platform-middlewares/readme.md index 4bc2c1f4d5a..5fce099f6fd 100644 --- a/packages/platform/platform-middlewares/readme.md +++ b/packages/platform/platform-middlewares/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/platform-middlewares ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-params/readme.md b/packages/platform/platform-params/readme.md index 453c9e678d4..f93565be4d6 100644 --- a/packages/platform/platform-params/readme.md +++ b/packages/platform/platform-params/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/platform-params ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-response-filter/readme.md b/packages/platform/platform-response-filter/readme.md index c90db503f72..22b304eab5b 100644 --- a/packages/platform/platform-response-filter/readme.md +++ b/packages/platform/platform-response-filter/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/platform-response-filter ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-serverless-http/package.json b/packages/platform/platform-serverless-http/package.json index 7f619f9e668..25ed0294451 100644 --- a/packages/platform/platform-serverless-http/package.json +++ b/packages/platform/platform-serverless-http/package.json @@ -73,7 +73,7 @@ "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/openspec": "^6.133.1", "@tsed/schema": "^6.133.1", "aws-lambda": ">=1.0.7", @@ -102,4 +102,4 @@ "optional": false } } -} \ No newline at end of file +} diff --git a/packages/platform/platform-serverless-http/readme.md b/packages/platform/platform-serverless-http/readme.md index 5e26a60c443..0207b9e9b13 100644 --- a/packages/platform/platform-serverless-http/readme.md +++ b/packages/platform/platform-serverless-http/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/aws.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/aws.html ## Features @@ -279,7 +279,7 @@ describe("TimeslotsController", () => { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/platform/platform-serverless-testing/package.json b/packages/platform/platform-serverless-testing/package.json index cb8d63e482c..bf553d58202 100644 --- a/packages/platform/platform-serverless-testing/package.json +++ b/packages/platform/platform-serverless-testing/package.json @@ -70,8 +70,8 @@ "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/openspec": "^6.133.1", "@tsed/schema": "^6.133.1" } -} \ No newline at end of file +} diff --git a/packages/platform/platform-serverless-testing/readme.md b/packages/platform/platform-serverless-testing/readme.md index 4d1bbefb71f..ba7979c2c02 100644 --- a/packages/platform/platform-serverless-testing/readme.md +++ b/packages/platform/platform-serverless-testing/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/aws.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/aws.html ## Features @@ -42,7 +42,7 @@ npm install --save-dev @tsed/platform-serverless-testing ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/platform/platform-serverless/package.json b/packages/platform/platform-serverless/package.json index 622546a7098..ad30b1a174c 100644 --- a/packages/platform/platform-serverless/package.json +++ b/packages/platform/platform-serverless/package.json @@ -41,7 +41,7 @@ }, "peerDependencies": { "@tsed/di": "^6.133.1", - "@tsed/logger": ">=6.2.2" + "@tsed/logger": "^6.7.8" }, "peerDependenciesMeta": { "@tsed/di": { @@ -54,4 +54,4 @@ "optional": true } } -} \ No newline at end of file +} diff --git a/packages/platform/platform-serverless/readme.md b/packages/platform/platform-serverless/readme.md index af092a0470d..411ec764942 100644 --- a/packages/platform/platform-serverless/readme.md +++ b/packages/platform/platform-serverless/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ ## Features @@ -52,7 +52,7 @@ It supports: Some features that you can use with the Express.js or Koa.js platforms are not available with the Serverless platform. -(See also our [table feature capabilities](https://tsed.io/getting-started/#platform-features-support)). +(See also our [table feature capabilities](https://tsed.dev/getting-started/#platform-features-support)). ### Middlewares @@ -405,7 +405,7 @@ describe("TimeslotsLambdaController", () => { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/platform/platform-test-utils/src/tests/testResponse.ts b/packages/platform/platform-test-utils/src/tests/testResponse.ts index 170f377ae20..79cb19f16eb 100644 --- a/packages/platform/platform-test-utils/src/tests/testResponse.ts +++ b/packages/platform/platform-test-utils/src/tests/testResponse.ts @@ -219,7 +219,7 @@ class TestResponseParamsCtrl { @Get("/scenario15a") testScenario15a() { - return axios.get(`https://tsed.io/api.json`, { + return axios.get(`https://tsed.dev/api.json`, { responseType: "json" }); } diff --git a/packages/platform/platform-views/readme.md b/packages/platform/platform-views/readme.md index 01ec8da9f92..58d86c1659c 100644 --- a/packages/platform/platform-views/readme.md +++ b/packages/platform/platform-views/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation @@ -38,7 +38,7 @@ npm install --save @tsed/core ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/security/jwks/readme.md b/packages/security/jwks/readme.md index 4fb534bc9a4..021fe6b2907 100644 --- a/packages/security/jwks/readme.md +++ b/packages/security/jwks/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -96,7 +96,7 @@ const jwks = getJwks({ ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/security/oidc-provider/readme.md b/packages/security/oidc-provider/readme.md index aa6833fe140..f558320b385 100644 --- a/packages/security/oidc-provider/readme.md +++ b/packages/security/oidc-provider/readme.md @@ -1,5 +1,5 @@

- Ts.ED logo + Ts.ED logo

@@ -17,9 +17,9 @@
- Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/oidc-provider +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/oidc-provider ## Feature @@ -89,7 +89,7 @@ export class Server {} ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/security/oidc-provider/test/app/views/index.ejs b/packages/security/oidc-provider/test/app/views/index.ejs index 44bac19ee36..2274db6f288 100644 --- a/packages/security/oidc-provider/test/app/views/index.ejs +++ b/packages/security/oidc-provider/test/app/views/index.ejs @@ -83,7 +83,7 @@
    diff --git a/packages/security/passport/readme.md b/packages/security/passport/readme.md index f7795157754..18b27c4aee2 100644 --- a/packages/security/passport/readme.md +++ b/packages/security/passport/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/passport +A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/passport ## Installation @@ -136,7 +136,7 @@ See our complete example on [Ts.ED passport repository](https://github.com/tsedi ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/specs/ajv/readme.md b/packages/specs/ajv/readme.md index 93abf78fc64..9bd8c93d370 100644 --- a/packages/specs/ajv/readme.md +++ b/packages/specs/ajv/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -16,7 +16,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/ajv +A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/ajv ## Installation @@ -39,7 +39,7 @@ export class Server {} ### Decorators -See our API documentation on https://tsed.io/#/api/index +See our API documentation on https://tsed.dev/#/api/index ## Example @@ -99,7 +99,7 @@ export class Server {} ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/specs/exceptions/readme.md b/packages/specs/exceptions/readme.md index dcecf98e04d..e1a46bd8e52 100644 --- a/packages/specs/exceptions/readme.md +++ b/packages/specs/exceptions/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -16,7 +16,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ Ts.ED http exceptions provide classes to throw standard HTTP exceptions. Theses exceptions can be used on Controller, Middleware or injectable Service. Emitted exceptions will be handle by the global error middleware and formatted to an Express response with the right status code and headers. @@ -31,11 +31,11 @@ npm install --save @tsed/exceptions ## Documentation -Documentation is available on [https://tsed.io/docs/exceptions](https://tsed.io/docs/exceptions) +Documentation is available on [https://tsed.dev/docs/exceptions](https://tsed.dev/docs/exceptions) ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/specs/json-mapper/readme.md b/packages/specs/json-mapper/readme.md index 421aaebb358..6800f17e705 100644 --- a/packages/specs/json-mapper/readme.md +++ b/packages/specs/json-mapper/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -27,7 +27,7 @@

    -A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ The `@tsed/json-mapper` package is responsible to map a plain object to a model and a model to a plain object. @@ -51,7 +51,7 @@ npm install --save @tsed/schema @tsed/json-mapper ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/specs/openspec/readme.md b/packages/specs/openspec/readme.md index fca21d78e2d..20d574e908f 100644 --- a/packages/specs/openspec/readme.md +++ b/packages/specs/openspec/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,13 +28,13 @@
    -> A package of Ts.ED framework. See website: https://tsed.io/ +> A package of Ts.ED framework. See website: https://tsed.dev/ OpenSpec2 and OpenSpec3 interfaces declarations for TypeScript application. ## Documentation -Documentation is available on [https://tsed.io](https://tsed.io/tutorials/swagger.html) +Documentation is available on [https://tsed.dev](https://tsed.dev/tutorials/swagger.html) ## Installation @@ -55,7 +55,7 @@ const spec2: OpenSpec2 = {swagger: "2.0", paths: {}}; ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/specs/schema/readme.md b/packages/specs/schema/readme.md index 40f545d3909..8a7c48f3bd5 100644 --- a/packages/specs/schema/readme.md +++ b/packages/specs/schema/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,13 +28,13 @@
    -A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ Package to declare JsonSchema and OpenAPI. ## Documentation -Documentation is available on [https://tsed.io](https://tsed.io/docs/model.html) +Documentation is available on [https://tsed.dev](https://tsed.dev/docs/model.html) ## Installation @@ -46,7 +46,7 @@ npm install --save @tsed/schema ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/specs/swagger/readme.md b/packages/specs/swagger/readme.md index 0bd6d871a88..b6b2a94ceb2 100644 --- a/packages/specs/swagger/readme.md +++ b/packages/specs/swagger/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/swagger +A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/swagger ## Installation @@ -129,9 +129,9 @@ export class CalendarCtrl {} #### Model documentation One of the feature of Ts.ED is the model definition to serialize or deserialize a -JSON Object (see [converters section](https://tsed.io/docs/components/converters.html)). +JSON Object (see [converters section](https://tsed.dev/docs/components/converters.html)). -This model can used on a method controller along with [@BodyParams](https://tsed.io/api/common/filters/decorators/BodyParams.html) or other decorators. +This model can used on a method controller along with [@BodyParams](https://tsed.dev/api/common/filters/decorators/BodyParams.html) or other decorators. ```typescript import {JsonProperty, Title, Description, Example} from "@tsed/common"; @@ -226,11 +226,11 @@ document.addEventListener("swagger.init", (evt) => { ## Documentation -See our documentation https://tsed.io/#/api/index +See our documentation https://tsed.dev/#/api/index ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/third-parties/agenda/readme.md b/packages/third-parties/agenda/readme.md index 527173e1860..f7c0a5b3b6e 100644 --- a/packages/third-parties/agenda/readme.md +++ b/packages/third-parties/agenda/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -18,9 +18,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -29,7 +29,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io +A package of Ts.ED framework. See website: https://tsed.dev ## Feature @@ -139,7 +139,7 @@ export class UsersService implements AfterRoutesInit { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/async-hook-context/readme.md b/packages/third-parties/async-hook-context/readme.md index 776aedf5e9a..a50ef8a712e 100644 --- a/packages/third-parties/async-hook-context/readme.md +++ b/packages/third-parties/async-hook-context/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -113,7 +113,7 @@ export class Server {} ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/components-scan/readme.md b/packages/third-parties/components-scan/readme.md index 7461aa29b4f..d8ab4acba7b 100644 --- a/packages/third-parties/components-scan/readme.md +++ b/packages/third-parties/components-scan/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ # Installation diff --git a/packages/third-parties/event-emitter/readme.md b/packages/third-parties/event-emitter/readme.md index 5bea6a2f0ef..48a952ba1a5 100644 --- a/packages/third-parties/event-emitter/readme.md +++ b/packages/third-parties/event-emitter/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -18,9 +18,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -29,7 +29,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io +A package of Ts.ED framework. See website: https://tsed.dev ## Feature @@ -121,7 +121,7 @@ export class OrderService { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/formio-types/readme.md b/packages/third-parties/formio-types/readme.md index 4dd4d6edb77..4cb9e64b9d2 100644 --- a/packages/third-parties/formio-types/readme.md +++ b/packages/third-parties/formio-types/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,13 +28,13 @@
    -A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ Package to transform a Schema declared with `@tsed/schema` to a valid Formio schema. ## Documentation -Documentation is available on [https://tsed.io](https://tsed.io/docs/model.html) +Documentation is available on [https://tsed.dev](https://tsed.dev/docs/model.html) ## Installation @@ -46,7 +46,7 @@ npm install --save @tsed/formio-types ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/formio/readme.md b/packages/third-parties/formio/readme.md index e916c50a7d9..bd476e421e6 100644 --- a/packages/third-parties/formio/readme.md +++ b/packages/third-parties/formio/readme.md @@ -1,5 +1,5 @@

    - Ts.ED logo + Ts.ED logo

    @@ -17,9 +17,9 @@
    - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
    -A package of Ts.ED framework. See website: https://tsed.io/tutorials/formio.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/formio.html ## Feature @@ -61,7 +61,7 @@ export class Server {} ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/formio/test/app/views/index.ejs b/packages/third-parties/formio/test/app/views/index.ejs index 44bac19ee36..2274db6f288 100644 --- a/packages/third-parties/formio/test/app/views/index.ejs +++ b/packages/third-parties/formio/test/app/views/index.ejs @@ -83,7 +83,7 @@
      diff --git a/packages/third-parties/schema-formio/readme.md b/packages/third-parties/schema-formio/readme.md index c9c6de03fdd..0eb06c4738c 100644 --- a/packages/third-parties/schema-formio/readme.md +++ b/packages/third-parties/schema-formio/readme.md @@ -1,5 +1,5 @@

      - Ts.ED logo + Ts.ED logo

      @@ -17,9 +17,9 @@
      - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,13 +28,13 @@
      -A package of Ts.ED framework. See website: https://tsed.io/ +A package of Ts.ED framework. See website: https://tsed.dev/ Package to transform a Schema declared with `@tsed/schema` to a valid Formio schema. ## Documentation -Documentation is available on [https://tsed.io](https://tsed.io/docs/model.html) +Documentation is available on [https://tsed.dev](https://tsed.dev/docs/model.html) ## Installation @@ -168,7 +168,7 @@ Generates the following formio schema: ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/seq/package.json b/packages/third-parties/seq/package.json index fc86424f524..c43b8b861a9 100644 --- a/packages/third-parties/seq/package.json +++ b/packages/third-parties/seq/package.json @@ -30,7 +30,7 @@ "build:esm": "tsc --build tsconfig.compile.esm.json" }, "dependencies": { - "@tsed/logger-seq": ">=6.2.2", + "@tsed/logger-seq": "^6.7.8", "tslib": "2.4.0" }, "devDependencies": { @@ -42,11 +42,11 @@ "@tsed/core": "^6.133.1", "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/openspec": "^6.133.1", "@tsed/schema": "^6.133.1" }, "publishConfig": { "tag": "deprecated" } -} \ No newline at end of file +} diff --git a/packages/third-parties/seq/readme.md b/packages/third-parties/seq/readme.md index dd6b19cc354..c33543c1692 100644 --- a/packages/third-parties/seq/readme.md +++ b/packages/third-parties/seq/readme.md @@ -1,5 +1,5 @@

      - Ts.ED logo + Ts.ED logo

      @@ -17,9 +17,9 @@
      - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
      -A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/seq +A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/seq ## Installation @@ -54,7 +54,7 @@ export class Server {} > Note: Seq module use the [@tsed/logger](https://logger.tsed.io) as a default system logger -> Note: Seq module use the log level from the [LoggerSettings](https://tsed.io/api/common/config/interfaces/ILoggerSettings.md) (default level is debug) +> Note: Seq module use the log level from the [LoggerSettings](https://tsed.dev/api/common/config/interfaces/ILoggerSettings.md) (default level is debug) ## Example @@ -79,7 +79,7 @@ Thanks to [OskarLebuda](https://github.com/OskarLebuda) to his contribution. ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/socketio-testing/readme.md b/packages/third-parties/socketio-testing/readme.md index 2e41f7bff2e..863f6144943 100644 --- a/packages/third-parties/socketio-testing/readme.md +++ b/packages/third-parties/socketio-testing/readme.md @@ -1,5 +1,5 @@

      - Ts.ED logo + Ts.ED logo

      @@ -17,9 +17,9 @@
      - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -27,7 +27,7 @@

      -A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/socket-io +A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/socket-io Socket.io enable real-time bidirectional event-based communication. It works on every platform, browser or device, focusing equally on reliability and speed. @@ -129,7 +129,7 @@ export class MyCtrl { ### Declaring an Input Event -[@Input](https://tsed.io/api/socketio/decorators/Input.html) decorator declare a method as a new handler for a specific `event`. +[@Input](https://tsed.dev/api/socketio/decorators/Input.html) decorator declare a method as a new handler for a specific `event`. ```typescript import {SocketService, Input, Emit, Args, Socket, Nsp} from "@tsed/socketio"; @@ -143,15 +143,15 @@ export class MySocketService { } ``` -- [@Args](https://tsed.io/api/socketio/args.html) <any|any[]>: List of the parameters sent by the input event. -- [@Socket](https://tsed.io/api/socketio/socket.html) <SocketIO.Socket>: Socket instance. -- [@Nsp](https://tsed.io/api/socketio/nsp.html) <[SocketIO.Namespace](https://socket.io/docs/rooms-and-namespaces/#)>: Namespace instance. +- [@Args](https://tsed.dev/api/socketio/args.html) <any|any[]>: List of the parameters sent by the input event. +- [@Socket](https://tsed.dev/api/socketio/socket.html) <SocketIO.Socket>: Socket instance. +- [@Nsp](https://tsed.dev/api/socketio/nsp.html) <[SocketIO.Namespace](https://socket.io/docs/rooms-and-namespaces/#)>: Namespace instance. ### Send a response You have a many choice to send a response to your client. Ts.ED offer some decorators to send a response: -![socketio](https://tsed.io/_media/socketio.png) +![socketio](https://tsed.dev/_media/socketio.png) Example: @@ -171,7 +171,7 @@ export class MySocketService { > The method accept a promise as returned value. ::: warning -Return value is only possible when the method is decorated by [@Emit](https://tsed.io/api/socketio/emit.html), [@Broadcast](https://tsed.io/api/socketio/broadcast.html) and [@BroadcastOthers](https://tsed.io/api/socketio/broadcastothers.html). +Return value is only possible when the method is decorated by [@Emit](https://tsed.dev/api/socketio/emit.html), [@Broadcast](https://tsed.dev/api/socketio/broadcast.html) and [@BroadcastOthers](https://tsed.dev/api/socketio/broadcastothers.html). ::: ### Socket Session @@ -279,11 +279,11 @@ export class MySocketService { ## Documentation -See our documentation https://tsed.io/#/api/index +See our documentation https://tsed.dev/#/api/index ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/socketio/package.json b/packages/third-parties/socketio/package.json index d74888ff018..7ef2f47efe7 100644 --- a/packages/third-parties/socketio/package.json +++ b/packages/third-parties/socketio/package.json @@ -46,7 +46,7 @@ "peerDependencies": { "@tsed/di": "^6.133.1", "@tsed/json-mapper": "^6.133.1", - "@tsed/logger": ">=6.2.2", + "@tsed/logger": "^6.7.8", "@tsed/platform-middlewares": "^6.133.1", "@tsed/schema": "^6.133.1", "socket.io": ">=4.0.0" @@ -65,4 +65,4 @@ "optional": false } } -} \ No newline at end of file +} diff --git a/packages/third-parties/socketio/readme.md b/packages/third-parties/socketio/readme.md index b20e3040bbe..0c92832d787 100644 --- a/packages/third-parties/socketio/readme.md +++ b/packages/third-parties/socketio/readme.md @@ -1,5 +1,5 @@

      - Ts.ED logo + Ts.ED logo

      @@ -17,9 +17,9 @@
      - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
      -A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/socket-io +A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/socket-io Socket.io enable real-time bidirectional event-based communication. It works on every platform, browser or device, focusing equally on reliability and speed. @@ -130,7 +130,7 @@ export class MyCtrl { ### Declaring an Input Event -[@Input](https://tsed.io/api/socketio/decorators/Input.html) decorator declare a method as a new handler for a specific `event`. +[@Input](https://tsed.dev/api/socketio/decorators/Input.html) decorator declare a method as a new handler for a specific `event`. ```typescript import {SocketService, Input, Emit, Args, Socket, Nsp} from "@tsed/socketio"; @@ -144,15 +144,15 @@ export class MySocketService { } ``` -- [@Args](https://tsed.io/api/socketio/args.html) <any|any[]>: List of the parameters sent by the input event. -- [@Socket](https://tsed.io/api/socketio/socket.html) <SocketIO.Socket>: Socket instance. -- [@Nsp](https://tsed.io/api/socketio/nsp.html) <[SocketIO.Namespace](https://socket.io/docs/rooms-and-namespaces/#)>: Namespace instance. +- [@Args](https://tsed.dev/api/socketio/args.html) <any|any[]>: List of the parameters sent by the input event. +- [@Socket](https://tsed.dev/api/socketio/socket.html) <SocketIO.Socket>: Socket instance. +- [@Nsp](https://tsed.dev/api/socketio/nsp.html) <[SocketIO.Namespace](https://socket.io/docs/rooms-and-namespaces/#)>: Namespace instance. ### Send a response You have a many choice to send a response to your client. Ts.ED offer some decorators to send a response: -![socketio](https://tsed.io/_media/socketio.png) +![socketio](https://tsed.dev/_media/socketio.png) Example: @@ -172,7 +172,7 @@ export class MySocketService { > The method accept a promise as returned value. ::: warning -Return value is only possible when the method is decorated by [@Emit](https://tsed.io/api/socketio/emit.html), [@Broadcast](https://tsed.io/api/socketio/broadcast.html) and [@BroadcastOthers](https://tsed.io/api/socketio/broadcastothers.html). +Return value is only possible when the method is decorated by [@Emit](https://tsed.dev/api/socketio/emit.html), [@Broadcast](https://tsed.dev/api/socketio/broadcast.html) and [@BroadcastOthers](https://tsed.dev/api/socketio/broadcastothers.html). ::: ### Socket Session @@ -280,11 +280,11 @@ export class MySocketService { ## Documentation -See our documentation https://tsed.io/#/api/index +See our documentation https://tsed.dev/#/api/index ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/stripe/readme.md b/packages/third-parties/stripe/readme.md index 33c9d0f4198..fb91a8c9a25 100644 --- a/packages/third-parties/stripe/readme.md +++ b/packages/third-parties/stripe/readme.md @@ -1,5 +1,5 @@

      - Ts.ED logo + Ts.ED logo

      @@ -17,9 +17,9 @@
      - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
      -A package of Ts.ED framework. See website: https://tsed.io/tutorials/stripe.html +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/stripe.html ## Feature @@ -254,7 +254,7 @@ describe("Stripe", () => { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/packages/third-parties/stripe/test/app/views/index.ejs b/packages/third-parties/stripe/test/app/views/index.ejs index 44bac19ee36..2274db6f288 100644 --- a/packages/third-parties/stripe/test/app/views/index.ejs +++ b/packages/third-parties/stripe/test/app/views/index.ejs @@ -83,7 +83,7 @@
        diff --git a/packages/third-parties/terminus/readme.md b/packages/third-parties/terminus/readme.md index 25f87ea4219..f9745df4820 100644 --- a/packages/third-parties/terminus/readme.md +++ b/packages/third-parties/terminus/readme.md @@ -1,5 +1,5 @@

        - Ts.ED logo + Ts.ED logo

        @@ -17,9 +17,9 @@
        - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -192,7 +192,7 @@ class RedisCtrl { ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html). +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html). diff --git a/packages/third-parties/vite-ssr-plugin/readme.md b/packages/third-parties/vite-ssr-plugin/readme.md index 30b9d3c0b44..cd8ceed666b 100644 --- a/packages/third-parties/vite-ssr-plugin/readme.md +++ b/packages/third-parties/vite-ssr-plugin/readme.md @@ -1,5 +1,5 @@

        - Ts.ED logo + Ts.ED logo

        @@ -17,9 +17,9 @@
        - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -28,7 +28,7 @@
        -A package of Ts.ED framework. See website: https://tsed.io/tutorials/vite-ssr-plugin +A package of Ts.ED framework. See website: https://tsed.dev/tutorials/vite-ssr-plugin ## Feature @@ -44,7 +44,7 @@ npm install --save @tsed/vite-ssr-plugin vite@3 vite-ssr-plugin ## Contributors -Please read [contributing guidelines here](https://tsed.io/CONTRIBUTING.html) +Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html) diff --git a/readme.md b/readme.md index e085f27744d..c88bc12d950 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@

        - Ts.ED logo + Ts.ED logo

        @@ -18,9 +18,9 @@
        - Website + Website   •   - Getting started + Getting started   •   Slack   •   @@ -56,16 +56,16 @@ It provides a lot of decorators and guideline to make your code more readable an ## Documentation -Documentation is available on [https://tsed.io](https://tsed.io) +Documentation is available on [https://tsed.dev](https://tsed.dev) ## Getting started -See our [getting started here](https://tsed.io/getting-started) to create new Ts.ED project or use +See our [getting started here](https://tsed.dev/getting-started) to create new Ts.ED project or use our [CLI](https://cli.tsed.io) ## Examples -Examples are available on [https://tsed.io/tutorials/](https://tsed.io/tutorials/) +Examples are available on [https://tsed.dev/tutorials/](https://tsed.dev/tutorials/) ## Overview @@ -111,7 +111,7 @@ async function bootstrap() { bootstrap(); ``` -To customize the server settings see [Configure server with decorator](https://tsed.io/docs/configuration.html) +To customize the server settings see [Configure server with decorator](https://tsed.dev/docs/configuration.html) #### Controller example diff --git a/team.json b/team.json index 33ecdb7a0f2..5b072e2973a 100644 --- a/team.json +++ b/team.json @@ -5,7 +5,7 @@ "src": "https://avatars3.githubusercontent.com/u/1763311?v=4", "github": "Romakita", "twitter": "RomainLenzotti", - "website": "https://tsed.io", + "website": "https://tsed.dev", "country": "France", "city": "Paris", "role": "Framework Author" diff --git a/tools/integration/views/swagger.ejs b/tools/integration/views/swagger.ejs index 44bac19ee36..2274db6f288 100644 --- a/tools/integration/views/swagger.ejs +++ b/tools/integration/views/swagger.ejs @@ -83,7 +83,7 @@
          diff --git a/yarn.lock b/yarn.lock index 9df454784e3..6b733797d0a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3662,31 +3662,31 @@ resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== -"@tsed/logger-file@>=6.2.2": - version "6.2.2" - resolved "https://registry.yarnpkg.com/@tsed/logger-file/-/logger-file-6.2.2.tgz#ffd1f9ab1a0e09160433676976c370a0800ba674" - integrity sha512-LLoHK5JYcKNTG/kB7OVbo73crLBl27R3xBOyuyULqwuQD0NJHFE99hseH4EoqZ1lRblVstbP4YpJqKuDx2xqzA== +"@tsed/logger-file@^6.7.8": + version "6.7.8" + resolved "https://registry.yarnpkg.com/@tsed/logger-file/-/logger-file-6.7.8.tgz#9696e1b09226e61bc3f616938fd67b5bac754ae1" + integrity sha512-xOZtTia2ipZRSdaRcOeCSajfYHV+FvTxvtmtiu1gP9l7tvtsAS7TZ3e6XY0LsFZdv/3Eor7n1jVdaEKZYznMwA== dependencies: - streamroller "3.0.6" - tslib "2.3.1" + streamroller "^3.1.5" + tslib "2.6.2" -"@tsed/logger-seq@>=6.2.2": - version "6.2.2" - resolved "https://registry.yarnpkg.com/@tsed/logger-seq/-/logger-seq-6.2.2.tgz#c2ed22c413484a40c6a4dbbd66dbf5ebcf827685" - integrity sha512-qI8f6y1RL1padfStzKWnjmCGALJ/TmCm3uak9ar6n0kKdsp0rzCnqQ44vWFNRM3mWzGefjbGCav1js763GeC0A== +"@tsed/logger-seq@^6.7.8": + version "6.7.8" + resolved "https://registry.yarnpkg.com/@tsed/logger-seq/-/logger-seq-6.7.8.tgz#fc5035defa6ade42c41316374900f81ecbb56c12" + integrity sha512-qExf9qCenSfE2ILwgSkLAPkFGpQxJ7Ydr5E0KGe1tySCENlv/LN5nXW0n8OSuCKu69IMfPwrpBxoqdqRWLgRAQ== dependencies: - seq-logging "1.1.1" - tslib "2.3.1" + seq-logging "1.1.2" + tslib "2.6.2" -"@tsed/logger@>=6.2.2": - version "6.2.2" - resolved "https://registry.yarnpkg.com/@tsed/logger/-/logger-6.2.2.tgz#debf9f053b450d0e6c6c6ec995684aed511a4056" - integrity sha512-V3iZVZVPWunhRtRR7qvjTiuvGRSEVOA4ALAUzR69QIRihucZ7EnrFRwUJE5dz5GlzmfkbzbiMIrxp3e5BhBF6Q== +"@tsed/logger@^6.7.8": + version "6.7.8" + resolved "https://registry.yarnpkg.com/@tsed/logger/-/logger-6.7.8.tgz#68c98b0f4c9368f7c9f82613f5719ac88308958c" + integrity sha512-4VB4+nt7Ljihp7IEv7RmosxsRyXZGhnesqlcNEyE8r1WZCVdXvUn2YmyF+4zMkaX1pR5Vaf80i4IDp7WSW9gwg== dependencies: colors "1.4.0" - date-format "^4.0.6" - semver "^7.3.5" - tslib "2.3.1" + date-format "^4.0.14" + semver "^7.6.0" + tslib "2.6.2" "@tsed/monorepo-utils@^1.20.2": version "1.21.0" @@ -9206,10 +9206,10 @@ date-fns@^2.16.1: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== -date-format@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.6.tgz#f6138b8f17968df9815b3d101fc06b0523f066c5" - integrity sha512-B9vvg5rHuQ8cbUXE/RMWMyX2YA5TecT3jKF5fLtGNlzPlU7zblSPmAm2OImDbWL+LDOQ6pUm+4LOFz+ywS41Zw== +date-format@^4.0.14: + version "4.0.14" + resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.14.tgz#7a8e584434fb169a521c8b7aa481f355810d9400" + integrity sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg== date-utils@*: version "1.2.21" @@ -11645,7 +11645,7 @@ fs-extra@10.1.0, fs-extra@^10.0.0, fs-extra@^10.0.1, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@8.1.0: +fs-extra@8.1.0, fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== @@ -20961,6 +20961,11 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^7.6.0: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + send@0.17.2: version "0.17.2" resolved "https://registry.yarnpkg.com/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820" @@ -21015,10 +21020,10 @@ sentence-case@^3.0.4: tslib "^2.0.3" upper-case-first "^2.0.2" -seq-logging@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/seq-logging/-/seq-logging-1.1.1.tgz#e9119c1b59ef8c7c855e45462152e72505d437f0" - integrity sha512-9miWILWu22dKNCkZi2UePAnZeQEzaYsQRKbAi5eSBUbuOyyeYPyYO1bEvIvZAZRjltEwY1S0yz94hc0/f+niDg== +seq-logging@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/seq-logging/-/seq-logging-1.1.2.tgz#fde4de7655560aaa614c93ec22fd7b4c2edd8f52" + integrity sha512-9n7bCIHiMdBene104oSEa2917OcNBw+uee2v+we4AQxmjqt/aeQkWy1296IvGsogbj5fK6wuDNhVhm/DYmauVA== serialize-javascript@6.0.0: version "6.0.0" @@ -21930,14 +21935,14 @@ stream-transform@^3.0.4: resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-3.0.4.tgz#aae97911ea3adf2cd25976655ec3201fb714fda8" integrity sha512-g2jbk1hs3GiF3oHZLbR7Fph/PXh/3xHoz/D8aR2oHySE4xVUvNeTGqihhb1vxFjYyu4inqiTfT42g2MHBjjx0g== -streamroller@3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.0.6.tgz#52823415800ded79a49aa3f7712f50a422b97493" - integrity sha512-Qz32plKq/MZywYyhEatxyYc8vs994Gz0Hu2MSYXXLD233UyPeIeRBZARIIGwFer4Mdb8r3Y2UqKkgyDghM6QCg== +streamroller@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.1.5.tgz#1263182329a45def1ffaef58d31b15d13d2ee7ff" + integrity sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw== dependencies: - date-format "^4.0.6" + date-format "^4.0.14" debug "^4.3.4" - fs-extra "^10.0.1" + fs-extra "^8.1.0" streamsearch@0.1.2: version "0.1.2" @@ -23007,21 +23012,26 @@ tslib@2.0.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e" integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== -tslib@2.3.1, tslib@~2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" - integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== - tslib@2.4.0, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.0, tslib@^2.3.1: version "2.4.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== +tslib@2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== +tslib@~2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + tsscmp@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb"