@storm-software/workspace-tools 1.36.6 → 1.37.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/index.js +4024 -4351
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +2 -1
- package/src/executors/tsup/executor.js +2517 -2950
- package/src/executors/tsup/schema.d.ts +1 -0
- package/src/executors/tsup/schema.json +8 -0
- package/src/executors/tsup-browser/executor.js +2520 -2956
- package/src/executors/tsup-neutral/executor.js +2513 -2971
- package/src/executors/tsup-neutral/schema.d.ts +0 -1
- package/src/executors/tsup-neutral/schema.json +1 -10
- package/src/executors/tsup-node/executor.js +4022 -4324
- package/src/executors/tsup-node/schema.d.ts +1 -0
- package/src/executors/tsup-node/schema.json +11 -2
|
@@ -91,6 +91,14 @@
|
|
|
91
91
|
"description": "Should the build process *tree-shake* to remove unused code?",
|
|
92
92
|
"default": true
|
|
93
93
|
},
|
|
94
|
+
"format": {
|
|
95
|
+
"type": "array",
|
|
96
|
+
"description": "The output format for the generated JavaScript files. There are currently three possible values that can be configured: iife, cjs, and esm.",
|
|
97
|
+
"default": ["cjs", "esm"],
|
|
98
|
+
"items": {
|
|
99
|
+
"type": "string"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
94
102
|
"debug": {
|
|
95
103
|
"type": "boolean",
|
|
96
104
|
"description": "Should output be unminified with source mappings.",
|