@aidc-toolkit/dev 1.0.39-beta → 1.0.40-beta
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/package.json +2 -2
- package/tsconfig-tsup.json +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aidc-toolkit/dev",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40-beta",
|
|
4
4
|
"description": "Shared development artefacts for AIDC Toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:non-prod": "rimraf dist tsconfig-src.tsbuildinfo && npm run tsc-src -- --declarationMap --sourceMap",
|
|
25
25
|
"build:alpha": "npm run build:non-prod && tsc --project tsconfig-config.json --noEmit",
|
|
26
26
|
"build:beta": "npm run build:non-prod",
|
|
27
|
-
"build:prod": "npm run tsc-src -- --noEmit && tsup",
|
|
27
|
+
"build:prod": "npm run tsc-src -- --noEmit && tsup --tsconfig tsconfig-tsup.json",
|
|
28
28
|
"build:doc": "npm run build:non-prod",
|
|
29
29
|
"copy-workflows": "copy-files-from-to --config copy-workflows.json"
|
|
30
30
|
},
|