@storm-software/workspace-tools 1.21.4 → 1.21.6

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.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.4...workspace-tools-v1.21.5) (2023-12-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with bad `$id` field in schema.json ([dd6cc03](https://github.com/storm-software/storm-ops/commit/dd6cc03f288e09f51cfebc1570c30ccef657d525))
7
+
8
+ ## [1.21.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.3...workspace-tools-v1.21.4) (2023-12-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **config-tools:** Add `outExtension` to esbuild options ([57059ea](https://github.com/storm-software/storm-ops/commit/57059ead4b579cb4280b70e0ec32a33b83c40bcc))
14
+
1
15
  ## [1.21.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.2...workspace-tools-v1.21.3) (2023-12-02)
2
16
 
3
17
 
package/index.js CHANGED
@@ -98741,7 +98741,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {
98741
98741
  const projectName = context.projectsConfigurations.projects[context.projectName].name;
98742
98742
  let config;
98743
98743
  if (!executorOptions.skipReadingConfig) {
98744
- config = await (0, import_config_tools.getDefaultConfig)({
98744
+ config = (0, import_config_tools.getDefaultConfig)({
98745
98745
  ...await (0, import_config_tools.getConfigFile)(),
98746
98746
  ...(0, import_config_tools.getConfigEnv)()
98747
98747
  });
@@ -98802,11 +98802,9 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
98802
98802
  }
98803
98803
  let config;
98804
98804
  if (!generatorOptions.skipReadingConfig) {
98805
- const configFile = await (0, import_config_tools2.getConfigFile)();
98806
- const configEnv = (0, import_config_tools2.getConfigEnv)();
98807
- config = await (0, import_config_tools2.getDefaultConfig)({
98808
- ...configFile,
98809
- ...configEnv
98805
+ config = (0, import_config_tools2.getDefaultConfig)({
98806
+ ...await (0, import_config_tools2.getConfigFile)(),
98807
+ ...(0, import_config_tools2.getConfigEnv)()
98810
98808
  });
98811
98809
  (0, import_config_tools2.setConfigEnv)(config);
98812
98810
  (0, import_config_tools2.getLogLevel)(config.logLevel) >= import_config_tools2.LogLevel.DEBUG && console.debug(
@@ -105750,11 +105748,9 @@ var tsNeutralBuildExecutorFn = (options, context, config) => {
105750
105748
  ).join(" ") : "TypeScript (Neutral Platform)"
105751
105749
  ),
105752
105750
  define: {
105753
- ...options.define,
105754
- __STORM_CONFIG: config
105751
+ ...options.define
105755
105752
  },
105756
105753
  env: {
105757
- __STORM_CONFIG: config,
105758
105754
  ...process.env
105759
105755
  }
105760
105756
  },
@@ -105920,11 +105916,9 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
105920
105916
  ).join(" ") : "TypeScript (NodeJs Platform)"
105921
105917
  ),
105922
105918
  define: {
105923
- ...options.define,
105924
- __STORM_CONFIG: config
105919
+ ...options.define
105925
105920
  },
105926
105921
  env: {
105927
- __STORM_CONFIG: config,
105928
105922
  ...process.env
105929
105923
  }
105930
105924
  },