@storm-software/workspace-tools 1.36.7 → 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 +7 -0
- package/index.js +5 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +2 -1
- package/src/executors/tsup/executor.js +3 -1
- package/src/executors/tsup/schema.d.ts +1 -0
- package/src/executors/tsup/schema.json +8 -0
- package/src/executors/tsup-browser/executor.js +5 -3
- package/src/executors/tsup-neutral/executor.js +5 -3
- package/src/executors/tsup-node/executor.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.36.7](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.36.6...workspace-tools-v1.36.7) (2024-01-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Removed the pino logging plugin from neutral and browser builds ([15d11ca](https://github.com/storm-software/storm-ops/commit/15d11cadba3b99facedc586912a8ff165cb2aa09))
|
|
7
|
+
|
|
1
8
|
## [1.36.6](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.36.5...workspace-tools-v1.36.6) (2024-01-06)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -110187,6 +110187,7 @@ function defaultConfig({
|
|
|
110187
110187
|
tsconfig = "tsconfig.json",
|
|
110188
110188
|
splitting,
|
|
110189
110189
|
treeshake,
|
|
110190
|
+
format: format2 = ["cjs", "esm"],
|
|
110190
110191
|
debug = false,
|
|
110191
110192
|
shims = true,
|
|
110192
110193
|
external,
|
|
@@ -110205,7 +110206,7 @@ function defaultConfig({
|
|
|
110205
110206
|
return {
|
|
110206
110207
|
name: "default",
|
|
110207
110208
|
entry,
|
|
110208
|
-
format:
|
|
110209
|
+
format: format2,
|
|
110209
110210
|
target: platform !== "node" ? [
|
|
110210
110211
|
"chrome91",
|
|
110211
110212
|
"firefox90",
|
|
@@ -117458,6 +117459,7 @@ var applyDefaultOptions = (options) => {
|
|
|
117458
117459
|
options.splitting ??= true;
|
|
117459
117460
|
options.treeshake ??= true;
|
|
117460
117461
|
options.platform ??= "neutral";
|
|
117462
|
+
options.format ??= ["cjs", "esm"];
|
|
117461
117463
|
options.verbose ??= false;
|
|
117462
117464
|
options.external ??= [];
|
|
117463
117465
|
options.additionalEntryPoints ??= [];
|
|
@@ -117529,7 +117531,7 @@ function modernNeutralConfig({
|
|
|
117529
117531
|
return {
|
|
117530
117532
|
name: "modern",
|
|
117531
117533
|
entry,
|
|
117532
|
-
format: ["cjs", "esm"
|
|
117534
|
+
format: ["cjs", "esm"],
|
|
117533
117535
|
target: ["esnext"],
|
|
117534
117536
|
tsconfig,
|
|
117535
117537
|
splitting,
|
|
@@ -117596,7 +117598,7 @@ function legacyNeutralConfig({
|
|
|
117596
117598
|
return {
|
|
117597
117599
|
name: "legacy",
|
|
117598
117600
|
entry,
|
|
117599
|
-
format: ["cjs", "esm"
|
|
117601
|
+
format: ["cjs", "esm"],
|
|
117600
117602
|
target: ["es2022"],
|
|
117601
117603
|
tsconfig,
|
|
117602
117604
|
splitting,
|