@storm-software/workspace-tools 1.21.3 → 1.21.5

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,17 @@
1
+ ## [1.21.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.3...workspace-tools-v1.21.4) (2023-12-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **config-tools:** Add `outExtension` to esbuild options ([57059ea](https://github.com/storm-software/storm-ops/commit/57059ead4b579cb4280b70e0ec32a33b83c40bcc))
7
+
8
+ ## [1.21.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.2...workspace-tools-v1.21.3) (2023-12-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **config-tools:** Update config package module type ([52dacd0](https://github.com/storm-software/storm-ops/commit/52dacd0a9f43ad36c915a0bc2ff5994c2ad32d45))
14
+
1
15
  ## [1.21.2](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.1...workspace-tools-v1.21.2) (2023-12-02)
2
16
 
3
17
 
package/index.js CHANGED
@@ -105750,11 +105750,9 @@ var tsNeutralBuildExecutorFn = (options, context, config) => {
105750
105750
  ).join(" ") : "TypeScript (Neutral Platform)"
105751
105751
  ),
105752
105752
  define: {
105753
- ...options.define,
105754
- __STORM_CONFIG: config
105753
+ ...options.define
105755
105754
  },
105756
105755
  env: {
105757
- __STORM_CONFIG: config,
105758
105756
  ...process.env
105759
105757
  }
105760
105758
  },
@@ -105920,11 +105918,9 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
105920
105918
  ).join(" ") : "TypeScript (NodeJs Platform)"
105921
105919
  ),
105922
105920
  define: {
105923
- ...options.define,
105924
- __STORM_CONFIG: config
105921
+ ...options.define
105925
105922
  },
105926
105923
  env: {
105927
- __STORM_CONFIG: config,
105928
105924
  ...process.env
105929
105925
  }
105930
105926
  },