@candlerip/shared3 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "scripts": {
19
19
  "pub": "./devops/publish.sh",
20
- "start": "sh ./_devops/typescript/tsc-watch.sh"
20
+ "start": "./_devops/typescript/tsc-watch.sh"
21
21
  },
22
22
  "dependencies": {
23
23
  "@types/node": "^22.5.5",
@@ -0,0 +1,2 @@
1
+ import { SubProjectName } from '../../../sub-project/index.js';
2
+ export type ConfigName = Exclude<SubProjectName, 'config'>;
@@ -0,0 +1,5 @@
1
+ import { BackendInitConfig, DictionaryServiceConfig } from '../../../sub-project/index.js';
2
+ export type ConfigNameTypeMap = {
3
+ 'backend-init': BackendInitConfig;
4
+ 'dictionary-service': DictionaryServiceConfig;
5
+ };
@@ -1,2 +1,2 @@
1
- import { SubProjectName } from '../../sub-project/index.js';
2
- export type ConfigName = Exclude<SubProjectName, 'config'>;
1
+ export * from './config-name/index.js';
2
+ export * from './config-name-type-map/index.js';
@@ -1 +1,2 @@
1
- export {};
1
+ export * from './config-name/index.js';
2
+ export * from './config-name-type-map/index.js';