@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 +2 -2
- package/src/project/config-name/domains/config-name/index.d.ts +2 -0
- package/src/project/config-name/domains/config-name/index.js +1 -0
- package/src/project/config-name/domains/config-name-type-map/index.d.ts +5 -0
- package/src/project/config-name/domains/config-name-type-map/index.js +1 -0
- package/src/project/config-name/domains/index.d.ts +2 -2
- package/src/project/config-name/domains/index.js +2 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@candlerip/shared3",
|
3
|
-
"version": "0.0.
|
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": "
|
20
|
+
"start": "./_devops/typescript/tsc-watch.sh"
|
21
21
|
},
|
22
22
|
"dependencies": {
|
23
23
|
"@types/node": "^22.5.5",
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
export
|
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';
|