@storm-software/workspace-tools 1.62.21 → 1.62.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.62.21",
3
+ "version": "1.62.23",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
package/src/base/index.js CHANGED
@@ -391368,7 +391368,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
391368
391368
  writeTrace(
391369
391369
  config,
391370
391370
  `Loaded Storm config into env:
391371
- ${Object.keys(process.env).map(
391371
+ ${Object.keys(process.env).filter((key2) => key2.startsWith("STORM_")).map(
391372
391372
  (key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
391373
391373
  ).join("\n")}`
391374
391374
  );
@@ -452836,7 +452836,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
452836
452836
  writeTrace(
452837
452837
  config,
452838
452838
  `Loaded Storm config into env:
452839
- ${Object.keys(process.env).map(
452839
+ ${Object.keys(process.env).filter((key2) => key2.startsWith("STORM_")).map(
452840
452840
  (key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
452841
452841
  ).join("\n")}`
452842
452842
  );
@@ -453161,7 +453161,7 @@ var applyDefaultOptions = (options8) => {
453161
453161
  var runTsupBuild = async (context, config, options8) => {
453162
453162
  const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
453163
453163
  const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
453164
- const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
453164
+ const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
453165
453165
  ret[key2] = options8.env?.[key2];
453166
453166
  return ret;
453167
453167
  }, {});
@@ -453184,7 +453184,10 @@ var runTsupBuild = async (context, config, options8) => {
453184
453184
  },
453185
453185
  env: {
453186
453186
  __STORM_CONFIG: JSON.stringify(stormEnv),
453187
- ...stormEnv
453187
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
453188
+ ret[key2] = options8.env?.[key2];
453189
+ return ret;
453190
+ }, {})
453188
453191
  },
453189
453192
  dtsTsConfig: getNormalizedTsConfig(
453190
453193
  workspaceRoot,
@@ -446655,7 +446655,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
446655
446655
  writeTrace(
446656
446656
  config,
446657
446657
  `Loaded Storm config into env:
446658
- ${Object.keys(process.env).map(
446658
+ ${Object.keys(process.env).filter((key2) => key2.startsWith("STORM_")).map(
446659
446659
  (key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
446660
446660
  ).join("\n")}`
446661
446661
  );
@@ -446977,7 +446977,7 @@ var applyDefaultOptions = (options8) => {
446977
446977
  var runTsupBuild = async (context, config, options8) => {
446978
446978
  const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
446979
446979
  const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
446980
- const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
446980
+ const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
446981
446981
  ret[key2] = options8.env?.[key2];
446982
446982
  return ret;
446983
446983
  }, {});
@@ -447000,7 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
447000
447000
  },
447001
447001
  env: {
447002
447002
  __STORM_CONFIG: JSON.stringify(stormEnv),
447003
- ...stormEnv
447003
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
447004
+ ret[key2] = options8.env?.[key2];
447005
+ return ret;
447006
+ }, {})
447004
447007
  },
447005
447008
  dtsTsConfig: getNormalizedTsConfig(
447006
447009
  workspaceRoot,
@@ -446655,7 +446655,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
446655
446655
  writeTrace(
446656
446656
  config,
446657
446657
  `Loaded Storm config into env:
446658
- ${Object.keys(process.env).map(
446658
+ ${Object.keys(process.env).filter((key2) => key2.startsWith("STORM_")).map(
446659
446659
  (key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
446660
446660
  ).join("\n")}`
446661
446661
  );
@@ -446977,7 +446977,7 @@ var applyDefaultOptions = (options8) => {
446977
446977
  var runTsupBuild = async (context, config, options8) => {
446978
446978
  const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
446979
446979
  const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
446980
- const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
446980
+ const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
446981
446981
  ret[key2] = options8.env?.[key2];
446982
446982
  return ret;
446983
446983
  }, {});
@@ -447000,7 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
447000
447000
  },
447001
447001
  env: {
447002
447002
  __STORM_CONFIG: JSON.stringify(stormEnv),
447003
- ...stormEnv
447003
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
447004
+ ret[key2] = options8.env?.[key2];
447005
+ return ret;
447006
+ }, {})
447004
447007
  },
447005
447008
  dtsTsConfig: getNormalizedTsConfig(
447006
447009
  workspaceRoot,
@@ -446655,7 +446655,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
446655
446655
  writeTrace(
446656
446656
  config,
446657
446657
  `Loaded Storm config into env:
446658
- ${Object.keys(process.env).map(
446658
+ ${Object.keys(process.env).filter((key2) => key2.startsWith("STORM_")).map(
446659
446659
  (key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
446660
446660
  ).join("\n")}`
446661
446661
  );
@@ -446977,7 +446977,7 @@ var applyDefaultOptions = (options8) => {
446977
446977
  var runTsupBuild = async (context, config, options8) => {
446978
446978
  const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
446979
446979
  const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
446980
- const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
446980
+ const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
446981
446981
  ret[key2] = options8.env?.[key2];
446982
446982
  return ret;
446983
446983
  }, {});
@@ -447000,7 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
447000
447000
  },
447001
447001
  env: {
447002
447002
  __STORM_CONFIG: JSON.stringify(stormEnv),
447003
- ...stormEnv
447003
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
447004
+ ret[key2] = options8.env?.[key2];
447005
+ return ret;
447006
+ }, {})
447004
447007
  },
447005
447008
  dtsTsConfig: getNormalizedTsConfig(
447006
447009
  workspaceRoot,
@@ -227889,7 +227889,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
227889
227889
  writeTrace(
227890
227890
  config,
227891
227891
  `Loaded Storm config into env:
227892
- ${Object.keys(process.env).map(
227892
+ ${Object.keys(process.env).filter((key) => key.startsWith("STORM_")).map(
227893
227893
  (key) => ` - ${key}=${_isFunction(process.env[key]) ? "<function>" : JSON.stringify(process.env[key])}`
227894
227894
  ).join("\n")}`
227895
227895
  );
@@ -457243,7 +457243,7 @@ var applyDefaultOptions = (options8) => {
457243
457243
  var runTsupBuild = async (context, config, options8) => {
457244
457244
  const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
457245
457245
  const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
457246
- const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
457246
+ const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
457247
457247
  ret[key2] = options8.env?.[key2];
457248
457248
  return ret;
457249
457249
  }, {});
@@ -457266,7 +457266,10 @@ var runTsupBuild = async (context, config, options8) => {
457266
457266
  },
457267
457267
  env: {
457268
457268
  __STORM_CONFIG: JSON.stringify(stormEnv),
457269
- ...stormEnv
457269
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
457270
+ ret[key2] = options8.env?.[key2];
457271
+ return ret;
457272
+ }, {})
457270
457273
  },
457271
457274
  dtsTsConfig: getNormalizedTsConfig(
457272
457275
  workspaceRoot,