@storm-software/workspace-tools 1.43.19 → 1.43.20

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.43.19](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.18...workspace-tools-v1.43.19) (2024-01-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Ensure correct minify option is passed into tsup build ([0093304](https://github.com/storm-software/storm-ops/commit/00933044d216fa99bf64de883674fab24f624fbd))
7
+
1
8
  ## [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
9
 
3
10
 
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
- try {
138089
- if (Array.isArray(options)) {
138090
- await Promise.all(options.map((buildOptions) => build(buildOptions, config)));
138091
- } else {
138092
- if (getLogLevel(config?.logLevel) >= LogLevel.TRACE && !options.silent) {
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
- } catch (e) {
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) => {