@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
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -47860,6 +47860,7 @@ function defaultConfig({
|
|
|
47860
47860
|
tsconfig = "tsconfig.json",
|
|
47861
47861
|
splitting,
|
|
47862
47862
|
treeshake,
|
|
47863
|
+
format = ["cjs", "esm"],
|
|
47863
47864
|
debug = false,
|
|
47864
47865
|
shims = true,
|
|
47865
47866
|
external,
|
|
@@ -47878,7 +47879,7 @@ function defaultConfig({
|
|
|
47878
47879
|
return {
|
|
47879
47880
|
name: "default",
|
|
47880
47881
|
entry,
|
|
47881
|
-
format
|
|
47882
|
+
format,
|
|
47882
47883
|
target: platform !== "node" ? [
|
|
47883
47884
|
"chrome91",
|
|
47884
47885
|
"firefox90",
|