@storm-software/workspace-tools 1.43.19 → 1.43.21
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 +6 -11
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +6 -11
- package/src/executors/tsup-browser/executor.js +6 -11
- package/src/executors/tsup-neutral/executor.js +6 -11
- package/src/executors/tsup-node/executor.js +6 -11
- package/src/generators/preset/files/.vscode/settings.json +21 -96
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.43.20](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.19...workspace-tools-v1.43.20) (2024-01-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Removed inner try-catch from tsup build ([742e185](https://github.com/storm-software/storm-ops/commit/742e18517b2a71e17bb0848eb17127530f8ce2c3))
|
|
7
|
+
|
|
8
|
+
## [1.43.19](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.18...workspace-tools-v1.43.19) (2024-01-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Ensure correct minify option is passed into tsup build ([0093304](https://github.com/storm-software/storm-ops/commit/00933044d216fa99bf64de883674fab24f624fbd))
|
|
14
|
+
|
|
1
15
|
## [1.43.18](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.17...workspace-tools-v1.43.18) (2024-01-18)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -138085,18 +138085,13 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options) {
|
|
|
138085
138085
|
return tsConfig;
|
|
138086
138086
|
}
|
|
138087
138087
|
var build = async (options, config) => {
|
|
138088
|
-
|
|
138089
|
-
|
|
138090
|
-
|
|
138091
|
-
|
|
138092
|
-
|
|
138093
|
-
console.log("\u2699\uFE0F Tsup build config: \n", options, "\n");
|
|
138094
|
-
}
|
|
138095
|
-
await (0, import_tsup.build)(options);
|
|
138088
|
+
if (Array.isArray(options)) {
|
|
138089
|
+
await Promise.all(options.map((buildOptions) => build(buildOptions, config)));
|
|
138090
|
+
} else {
|
|
138091
|
+
if (getLogLevel(config?.logLevel) >= LogLevel.TRACE && !options.silent) {
|
|
138092
|
+
console.log("\u2699\uFE0F Tsup build config: \n", options, "\n");
|
|
138096
138093
|
}
|
|
138097
|
-
|
|
138098
|
-
console.error("\u26A0\uFE0F A failure occured during the Tsup Build executor");
|
|
138099
|
-
console.error(e);
|
|
138094
|
+
await (0, import_tsup.build)(options);
|
|
138100
138095
|
}
|
|
138101
138096
|
};
|
|
138102
138097
|
var applyDefaultOptions = (options) => {
|