@storm-software/workspace-tools 1.38.0 → 1.39.0
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/CHANGELOG.md +14 -0
- package/README.md +41 -10
- package/index.js +22421 -448
- package/meta.json +1 -1
- package/package.json +2 -1
- package/src/base/index.js +3 -1
- package/src/executors/tsup/executor.js +22281 -235
- package/src/executors/tsup/schema.d.ts +1 -0
- package/src/executors/tsup/schema.json +5 -0
- package/src/executors/tsup-browser/executor.js +22519 -469
- package/src/executors/tsup-neutral/executor.js +22414 -445
- package/src/executors/tsup-node/executor.js +22516 -468
- package/src/utils/index.js +22046 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.39.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
|
|
6
6
|
"keywords": [
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"terser": "^5.24.0",
|
|
54
54
|
"tslib": "2.6.2",
|
|
55
55
|
"tsup": "8.0.0",
|
|
56
|
+
"typia": "^5.3.9",
|
|
56
57
|
"zod": "^3.22.4",
|
|
57
58
|
"zod-to-json-schema": "^3.22.1"
|
|
58
59
|
},
|
package/src/base/index.js
CHANGED
|
@@ -47875,7 +47875,8 @@ function defaultConfig({
|
|
|
47875
47875
|
env,
|
|
47876
47876
|
plugins,
|
|
47877
47877
|
generatePackageJson,
|
|
47878
|
-
dtsTsConfig
|
|
47878
|
+
dtsTsConfig,
|
|
47879
|
+
getTransform
|
|
47879
47880
|
}) {
|
|
47880
47881
|
return {
|
|
47881
47882
|
name: "default",
|
|
@@ -47932,6 +47933,7 @@ function defaultConfig({
|
|
|
47932
47933
|
clean: false,
|
|
47933
47934
|
tsconfigDecoratorMetadata: true,
|
|
47934
47935
|
plugins,
|
|
47936
|
+
getTransform,
|
|
47935
47937
|
outExtension
|
|
47936
47938
|
};
|
|
47937
47939
|
}
|