-A package of Ts.ED framework. See website: https://tsed.io
+A package of Ts.ED framework. See website: https://tsed.dev
## Feature
@@ -188,7 +188,7 @@ export class UsersService {
## 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/schema-formio/readme.md b/packages/third-parties/schema-formio/readme.md
index 70db730f019..06e19dd003b 100644
--- a/packages/third-parties/schema-formio/readme.md
+++ b/packages/third-parties/schema-formio/readme.md
@@ -1,5 +1,5 @@
-
Website
+
Website
•
-
Getting started
+
Getting started
•
Slack
•
@@ -27,13 +27,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
@@ -167,7 +167,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/socketio-testing/readme.md b/packages/third-parties/socketio-testing/readme.md
index c5b254a4f4a..4c059e96940 100644
--- a/packages/third-parties/socketio-testing/readme.md
+++ b/packages/third-parties/socketio-testing/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,9 @@
-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.
@@ -128,7 +128,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";
@@ -142,15 +142,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:
@@ -170,7 +170,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
@@ -278,11 +278,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 08d5e7e78f2..9ec9efcd0c0 100644
--- a/packages/third-parties/socketio/package.json
+++ b/packages/third-parties/socketio/package.json
@@ -54,7 +54,7 @@
"peerDependencies": {
"@tsed/di": "7.85.0",
"@tsed/json-mapper": "7.85.0",
- "@tsed/logger": ">=6.7.5",
+ "@tsed/logger": "^6.7.8",
"@tsed/platform-middlewares": "7.85.0",
"@tsed/schema": "7.85.0",
"socket.io": ">=4.0.0"
diff --git a/packages/third-parties/socketio/readme.md b/packages/third-parties/socketio/readme.md
index f04668e3bb2..d1bd5f98f0c 100644
--- a/packages/third-parties/socketio/readme.md
+++ b/packages/third-parties/socketio/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,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.
@@ -151,7 +151,7 @@ export class MySocketService {
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/socketio.png)
+![socketio](https://tsed.dev/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
@@ -307,11 +307,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/sse/package.json b/packages/third-parties/sse/package.json
index 501b270f6eb..3d6568aee7a 100644
--- a/packages/third-parties/sse/package.json
+++ b/packages/third-parties/sse/package.json
@@ -52,7 +52,7 @@
"peerDependencies": {
"@tsed/di": "7.85.0",
"@tsed/json-mapper": "7.85.0",
- "@tsed/logger": ">=6.7.5",
+ "@tsed/logger": "^6.7.8",
"@tsed/platform-middlewares": "7.85.0",
"@tsed/schema": "7.85.0"
},
diff --git a/packages/third-parties/sse/readme.md b/packages/third-parties/sse/readme.md
index b8832349c46..6b681da649f 100644
--- a/packages/third-parties/sse/readme.md
+++ b/packages/third-parties/sse/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,9 @@
-
Website
+
Website
•
-
Getting started
+
Getting started
•
Slack
•
@@ -27,7 +27,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/#/tutorials/server-sent-events
+A package of Ts.ED framework. See website: https://tsed.dev/#/tutorials/server-sent-events
Server-sent events let you push data to the client. It's a simple way to send data from the server to the client. The data is sent as a stream of messages, with an optional event name and id. It's a simple way to send data from the server to the client.
@@ -150,11 +150,11 @@ export class MyCtrl {
## 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 d4ad074201f..778b7fad64b 100644
--- a/packages/third-parties/stripe/readme.md
+++ b/packages/third-parties/stripe/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,9 @@
-
Website
+
Website
•
-
Getting started
+
Getting started
•
Slack
•
@@ -27,7 +27,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/temporal/readme.md b/packages/third-parties/temporal/readme.md
index 72c525a1df5..c987e25d3d1 100644
--- a/packages/third-parties/temporal/readme.md
+++ b/packages/third-parties/temporal/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -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
## Feature
@@ -231,7 +231,7 @@ await worker.run();
## 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/terminus/readme.md b/packages/third-parties/terminus/readme.md
index 0c80f2ea989..409ddd52faf 100644
--- a/packages/third-parties/terminus/readme.md
+++ b/packages/third-parties/terminus/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,9 @@
-
Website
+
Website
•
-
Getting started
+
Getting started
•
Slack
•
@@ -191,7 +191,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/vike/readme.md b/packages/third-parties/vike/readme.md
index befecff667e..aa1d5c9d2b7 100644
--- a/packages/third-parties/vike/readme.md
+++ b/packages/third-parties/vike/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,9 @@
-
Website
+
Website
•
-
Getting started
+
Getting started
•
Slack
•
@@ -27,7 +27,7 @@
-A package of Ts.ED framework. See website: https://tsed.io/tutorials/vike
+A package of Ts.ED framework. See website: https://tsed.dev/tutorials/vike
## Feature
@@ -43,7 +43,7 @@ npm install --save @tsed/vike vite@4 vike
## 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 a945f7a0a90..a5b1bbf3dca 100644
--- a/packages/third-parties/vite-ssr-plugin/readme.md
+++ b/packages/third-parties/vite-ssr-plugin/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,9 @@
-
Website
+
Website
•
-
Getting started
+
Getting started
•
Slack
•
@@ -27,7 +27,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
@@ -43,7 +43,7 @@ npm install --save @tsed/vite-ssr-plugin vite@4 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/packages/utils/normalize-path/readme.md b/packages/utils/normalize-path/readme.md
index 73e4aef3e02..59c32c428db 100644
--- a/packages/utils/normalize-path/readme.md
+++ b/packages/utils/normalize-path/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -16,9 +16,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/
# Installation
@@ -37,7 +37,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/readme.md b/readme.md
index e617980e5fd..9ad13c77c14 100644
--- a/readme.md
+++ b/readme.md
@@ -1,5 +1,5 @@
-
+
@@ -17,9 +17,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
## Links
- [Board/Roadmap](https://github.com/orgs/tsedio/projects/4/views/1)
-- [Documentation](https://tsed.io)
+- [Documentation](https://tsed.dev)
- [Guideline](./CONTRIBUTING.md)
-- [Tutorials](https://tsed.io/tutorials/)
+- [Tutorials](https://tsed.dev/tutorials/)
- [Community Slack](https://api.tsed.io/rest/slack/tsedio/tsed)
- [Support us](https://github.com/sponsors/romakita)
-- [Team](https://tsed.io/team.html)
+- [Team](https://tsed.dev/team.html)
## 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)
## Overview
@@ -112,7 +112,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 f9e3008bc3e..fc837f33c56 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/yarn.lock b/yarn.lock
index a865c2d4844..ff5c3c9ec5d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6439,7 +6439,7 @@ __metadata:
"@tsed/common": "workspace:*"
"@tsed/core": "workspace:*"
"@tsed/di": "workspace:*"
- "@tsed/logger": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
"@tsed/typescript": "workspace:*"
"@types/graphql": "npm:14.5.0"
apollo-datasource: "npm:^3.3.2"
@@ -6457,7 +6457,7 @@ __metadata:
"@tsed/common": 7.85.0
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
apollo-datasource: ">=3.0.0"
apollo-datasource-rest: ">=3.0.0"
apollo-server-core: ">=3.0.0"
@@ -6507,8 +6507,8 @@ __metadata:
"@tsed/engines": "workspace:*"
"@tsed/exceptions": "workspace:*"
"@tsed/json-mapper": "workspace:*"
- "@tsed/logger": "npm:>=6.7.5"
- "@tsed/logger-file": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
+ "@tsed/logger-file": "npm:^6.7.8"
"@tsed/platform-exceptions": "workspace:*"
"@tsed/platform-log-middleware": "workspace:*"
"@tsed/platform-middlewares": "workspace:*"
@@ -6527,8 +6527,8 @@ __metadata:
uuid: "npm:9.0.1"
vitest: "npm:2.0.4"
peerDependencies:
- "@tsed/logger": ">=6.7.5"
- "@tsed/logger-file": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
+ "@tsed/logger-file": ^6.7.8
peerDependenciesMeta:
"@tsed/logger":
optional: false
@@ -6584,7 +6584,7 @@ __metadata:
dependencies:
"@tsed/barrels": "workspace:*"
"@tsed/core": "workspace:*"
- "@tsed/logger": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
"@tsed/schema": "workspace:*"
"@tsed/typescript": "workspace:*"
cross-env: "npm:7.0.3"
@@ -6595,7 +6595,7 @@ __metadata:
webpack: "npm:^5.75.0"
peerDependencies:
"@tsed/core": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/schema": 7.85.0
peerDependenciesMeta:
"@tsed/core":
@@ -6776,7 +6776,7 @@ __metadata:
"@tsed/common": "workspace:*"
"@tsed/core": "workspace:*"
"@tsed/di": "workspace:*"
- "@tsed/logger": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
"@tsed/typescript": "workspace:*"
eslint: "npm:^8.57.0"
graphql-ws: "npm:^5.15.0"
@@ -6786,7 +6786,7 @@ __metadata:
"@tsed/common": 7.85.0
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
graphql-ws: ">=5.14.2"
languageName: unknown
linkType: soft
@@ -6870,15 +6870,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@tsed/logger-file@npm:>=6.7.5":
- version: 6.7.5
- resolution: "@tsed/logger-file@npm:6.7.5"
+"@tsed/logger-file@npm:^6.7.8":
+ version: 6.7.8
+ resolution: "@tsed/logger-file@npm:6.7.8"
dependencies:
streamroller: "npm:^3.1.5"
tslib: "npm:2.6.2"
peerDependencies:
- "@tsed/logger": 6.7.5
- checksum: 10/ad5e7d2bb8d8b856c91b947d4410c57d643abfdedf094a560811a9ff7c89fe3879260b771da13803c511f92c28a33f8bddeb374f96407eac79aa6404093d816a
+ "@tsed/logger": 6.7.8
+ checksum: 10/cec406d33eb27cee6d78cf8db606d9c276805c3bfb1fed4baa3c115520ce4639830260784c13d128e479c244270d6fcc98785902286145a5cd6fdb263c9d9bec
languageName: node
linkType: hard
@@ -6894,15 +6894,15 @@ __metadata:
languageName: node
linkType: hard
-"@tsed/logger@npm:>=6.7.5":
- version: 6.7.5
- resolution: "@tsed/logger@npm:6.7.5"
+"@tsed/logger@npm:^6.7.8":
+ version: 6.7.8
+ resolution: "@tsed/logger@npm:6.7.8"
dependencies:
colors: "npm:1.4.0"
date-format: "npm:^4.0.14"
semver: "npm:^7.6.0"
tslib: "npm:2.6.2"
- checksum: 10/969e83830261959792ee7ad26236422b251140642980edae79ff96242681a0dd4e93c9e3f428be5d90a5426190c631f891be46c6d325b09f1d9005f5b7cbe21f
+ checksum: 10/c9448a86e7da2fedd542e07fa9108e7852cc4a8dd0d7b02f54071e51914d68f87e655eef0fe430d08a189b0c3b41a35cc8420029a0d2b73e6ad4d8385890f258
languageName: node
linkType: hard
@@ -6917,7 +6917,7 @@ __metadata:
"@tsed/core": "workspace:*"
"@tsed/di": "workspace:*"
"@tsed/json-mapper": "workspace:*"
- "@tsed/logger": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
"@tsed/schema": "workspace:*"
"@tsed/testcontainers-mongo": "workspace:*"
"@tsed/typescript": "workspace:*"
@@ -6932,7 +6932,7 @@ __metadata:
"@tsed/common": 7.85.0
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
languageName: unknown
linkType: soft
@@ -6945,7 +6945,7 @@ __metadata:
"@tsed/core": "workspace:*"
"@tsed/di": "workspace:*"
"@tsed/json-mapper": "workspace:*"
- "@tsed/logger": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
"@tsed/schema": "workspace:*"
"@tsed/testcontainers-mongo": "workspace:*"
"@tsed/typescript": "workspace:*"
@@ -6960,7 +6960,7 @@ __metadata:
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/schema": 7.85.0
mongoose: ">=6.0.0"
languageName: unknown
@@ -7077,7 +7077,7 @@ __metadata:
peerDependencies:
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/oidc-provider": 7.85.0
oidc-provider: ">=8.0.0"
peerDependenciesMeta:
@@ -7298,7 +7298,7 @@ __metadata:
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/openspec": 7.85.0
"@tsed/platform-views": 7.85.0
"@tsed/schema": 7.85.0
@@ -7366,7 +7366,7 @@ __metadata:
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/openspec": 7.85.0
"@tsed/schema": 7.85.0
koa: ">=2.13.0"
@@ -7580,7 +7580,7 @@ __metadata:
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/openspec": 7.85.0
"@tsed/schema": 7.85.0
serverless-http: ">=2.0.0"
@@ -7621,7 +7621,7 @@ __metadata:
"@tsed/core": 7.85.0
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/openspec": 7.85.0
"@tsed/schema": 7.85.0
languageName: unknown
@@ -7653,7 +7653,7 @@ __metadata:
vitest: "npm:2.0.4"
peerDependencies:
"@tsed/di": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
find-my-way: ">=7.0.0"
peerDependenciesMeta:
"@tsed/di":
@@ -7792,7 +7792,7 @@ __metadata:
"@swc-node/register": "npm:1.6.8"
"@swc/core": "npm:1.7.26"
"@swc/helpers": "npm:0.5.13"
- "@tsed/logger": "npm:>=6.7.5"
+ "@tsed/logger": "npm:^6.7.8"
"@tsed/monorepo-utils": "npm:2.3.5"
"@tsed/ts-doc": "npm:4.1.0"
"@types/axios": "npm:0.14.0"
@@ -7958,7 +7958,7 @@ __metadata:
peerDependencies:
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/platform-middlewares": 7.85.0
"@tsed/schema": 7.85.0
socket.io: ">=4.0.0"
@@ -7996,7 +7996,7 @@ __metadata:
peerDependencies:
"@tsed/di": 7.85.0
"@tsed/json-mapper": 7.85.0
- "@tsed/logger": ">=6.7.5"
+ "@tsed/logger": ^6.7.8
"@tsed/platform-middlewares": 7.85.0
"@tsed/schema": 7.85.0
peerDependenciesMeta: