@candlerip/shared3 0.0.19 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/project/project-config/domains/index.d.ts +1 -0
- package/src/project/project-config/domains/index.js +1 -0
- package/src/project/project-config/domains/project-config-type-map/index.d.ts +12 -0
- package/src/project/project-config/domains/project-config-type-map/index.js +1 -0
- package/src/project/project-config-name/configs/index.d.ts +1 -1
- package/src/project/project-config-name/configs/index.js +5 -8
package/package.json
CHANGED
@@ -2,4 +2,5 @@ export * from './backend-project-config/index.js';
|
|
2
2
|
export * from './backend-init-project-config/index.js';
|
3
3
|
export * from './cache-service-project-config/index.js';
|
4
4
|
export * from './dictionary-service-poject-config/index.js';
|
5
|
+
export * from './project-config-type-map/index.js';
|
5
6
|
export * from './redis-project-config/index.js';
|
@@ -2,4 +2,5 @@ export * from './backend-project-config/index.js';
|
|
2
2
|
export * from './backend-init-project-config/index.js';
|
3
3
|
export * from './cache-service-project-config/index.js';
|
4
4
|
export * from './dictionary-service-poject-config/index.js';
|
5
|
+
export * from './project-config-type-map/index.js';
|
5
6
|
export * from './redis-project-config/index.js';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { BackendInitProjectConfig } from '../backend-init-project-config/index.js';
|
2
|
+
import { BackendProjectConfig } from '../backend-project-config/index.js';
|
3
|
+
import { CacheServiceProjectConfig } from '../cache-service-project-config/index.js';
|
4
|
+
import { DictionaryServiceProjectConfig } from '../dictionary-service-poject-config/index.js';
|
5
|
+
import { RedisProjectConfig } from '../redis-project-config/index.js';
|
6
|
+
export type ProjectConfigTypeMap = {
|
7
|
+
'backend-project-config': BackendProjectConfig;
|
8
|
+
'backend-init-project-config': BackendInitProjectConfig;
|
9
|
+
'cache-service-project-config': CacheServiceProjectConfig;
|
10
|
+
'dictionary-service-project-config': DictionaryServiceProjectConfig;
|
11
|
+
'redis-project-config': RedisProjectConfig;
|
12
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1 +1 @@
|
|
1
|
-
export declare const PROJECT_CONFIG_NAMES: readonly ["backend-init-config", "backend-config", "dictionary-
|
1
|
+
export declare const PROJECT_CONFIG_NAMES: readonly ["backend-init-project-config", "backend-project-config", "dictionary-service-project-config", "cache-service-project-config", "redis-project-config"];
|
@@ -1,10 +1,7 @@
|
|
1
1
|
export const PROJECT_CONFIG_NAMES = [
|
2
|
-
'backend-init-config',
|
3
|
-
'backend-config',
|
4
|
-
'dictionary-
|
5
|
-
'cache-service',
|
6
|
-
'config',
|
7
|
-
'redis',
|
8
|
-
'shared',
|
9
|
-
'shared-aws',
|
2
|
+
'backend-init-project-config',
|
3
|
+
'backend-project-config',
|
4
|
+
'dictionary-service-project-config',
|
5
|
+
'cache-service-project-config',
|
6
|
+
'redis-project-config',
|
10
7
|
];
|