@candlerip/shared3 0.0.14 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
- package/_devops/npm/npm-update-packages.sh +0 -1
- package/package.json +1 -1
- package/src/environment/environment-variables/domains/index.d.ts +4 -0
- package/src/project/config/domains/cache-service-config/index.d.ts +2 -0
- package/src/project/config/domains/cache-service-config/index.js +1 -0
- package/src/project/config/domains/index.d.ts +2 -0
- package/src/project/config/domains/index.js +2 -0
- package/src/project/config/domains/redis-config/index.d.ts +2 -0
- package/src/project/config/domains/redis-config/index.js +1 -0
- package/src/project/config-name/domains/config-name/index.d.ts +1 -1
- package/src/project/sub-project/sub-project-name/configs/index.d.ts +1 -1
- package/src/project/sub-project/sub-project-name/configs/index.js +1 -1
package/package.json
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { SubProjectName } from '../../../sub-project/index.js';
|
2
|
-
export type ConfigName = Exclude<SubProjectName, 'config'>;
|
2
|
+
export type ConfigName = Exclude<SubProjectName, 'backend' | 'config'>;
|
@@ -1 +1 @@
|
|
1
|
-
export declare const SUB_PROJECT_NAMES: readonly ["backend-init", "dictionary-service", "config"];
|
1
|
+
export declare const SUB_PROJECT_NAMES: readonly ["backend-init", "backend", "dictionary-service", "cache-service", "config", "redis"];
|
@@ -1 +1 @@
|
|
1
|
-
export const SUB_PROJECT_NAMES = ['backend-init', 'dictionary-service', 'config'];
|
1
|
+
export const SUB_PROJECT_NAMES = ['backend-init', 'backend', 'dictionary-service', 'cache-service', 'config', 'redis'];
|