@nexusts/config 0.9.0 → 0.9.2
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 +4 -4
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Public API for
|
|
2
|
+
* Public API for `@nexusts/config`.
|
|
3
3
|
*
|
|
4
4
|
* Quick start:
|
|
5
5
|
*
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
* });
|
|
12
12
|
*
|
|
13
13
|
* // src/app/app.module.ts
|
|
14
|
-
* import { Module } from '
|
|
15
|
-
* import { ConfigModule } from '
|
|
14
|
+
* import { Module } from '@nexusts/core';
|
|
15
|
+
* import { ConfigModule } from '@nexusts/config';
|
|
16
16
|
*
|
|
17
17
|
* @Module({
|
|
18
18
|
* imports: [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* export class AppModule {}
|
|
25
25
|
*
|
|
26
26
|
* // any service
|
|
27
|
-
* import { ConfigService } from '
|
|
27
|
+
* import { ConfigService } from '@nexusts/config';
|
|
28
28
|
*
|
|
29
29
|
* class MyService {
|
|
30
30
|
* constructor(
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexusts/config",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Zod-validated configuration with layered loading",
|
|
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.
|
|
29
|
+
"@nexusts/core": "^0.9.2"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|