@nexusts/logger 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  /**
2
- * Public API for `nexusjs/logger`.
2
+ * Public API for `@nexusts/logger`.
3
3
  *
4
4
  * Quick start:
5
5
  *
6
6
  * // src/app/app.module.ts
7
- * import { Module } from 'nexusjs';
8
- * import { LoggerModule } from 'nexusjs/logger';
7
+ * import { Module } from '@nexusts/core';
8
+ * import { LoggerModule } from '@nexusts/logger';
9
9
  *
10
10
  * @Module({
11
11
  * imports: [
@@ -18,7 +18,7 @@
18
18
  * export class AppModule {}
19
19
  *
20
20
  * // any service
21
- * import { Logger } from 'nexusjs/logger';
21
+ * import { Logger } from '@nexusts/logger';
22
22
  *
23
23
  * @Injectable()
24
24
  * class MyService {
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Logger types — the contract for `nexusjs/logger`.
2
+ * Logger types — the contract for `@nexusts/logger`.
3
3
  *
4
4
  * Mirrors `@adonisjs/logger` + NestJS's built-in Logger. One logger
5
5
  * class, two transports:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexusts/logger",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Pino-backed structured logging",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -26,7 +26,7 @@
26
26
  ],
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
- "@nexusts/core": "^0.9.0",
29
+ "@nexusts/core": "^0.9.1",
30
30
  "pino": "^9.0.0"
31
31
  },
32
32
  "repository": {