@storm-software/workspace-tools 1.62.22 → 1.62.24

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.22",
3
+ "version": "1.62.24",
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": [
@@ -453184,8 +453184,10 @@ var runTsupBuild = async (context, config, options8) => {
453184
453184
  },
453185
453185
  env: {
453186
453186
  __STORM_CONFIG: JSON.stringify(stormEnv),
453187
- ...process.env,
453188
- ...options8.env
453187
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
453188
+ ret[key2] = options8.env?.[key2];
453189
+ return ret;
453190
+ }, {})
453189
453191
  },
453190
453192
  dtsTsConfig: getNormalizedTsConfig(
453191
453193
  workspaceRoot,
@@ -447000,8 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
447000
447000
  },
447001
447001
  env: {
447002
447002
  __STORM_CONFIG: JSON.stringify(stormEnv),
447003
- ...process.env,
447004
- ...options8.env
447003
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
447004
+ ret[key2] = options8.env?.[key2];
447005
+ return ret;
447006
+ }, {})
447005
447007
  },
447006
447008
  dtsTsConfig: getNormalizedTsConfig(
447007
447009
  workspaceRoot,
@@ -453711,7 +453713,7 @@ var browserConfig = ({
453711
453713
  external,
453712
453714
  banner = {},
453713
453715
  platform = "browser",
453714
- verbose = false,
453716
+ verbose = true,
453715
453717
  metafile = true,
453716
453718
  skipNativeModulesPlugin = false,
453717
453719
  define: define2,
@@ -447000,8 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
447000
447000
  },
447001
447001
  env: {
447002
447002
  __STORM_CONFIG: JSON.stringify(stormEnv),
447003
- ...process.env,
447004
- ...options8.env
447003
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
447004
+ ret[key2] = options8.env?.[key2];
447005
+ return ret;
447006
+ }, {})
447005
447007
  },
447006
447008
  dtsTsConfig: getNormalizedTsConfig(
447007
447009
  workspaceRoot,
@@ -453711,7 +453713,7 @@ var neutralConfig = ({
453711
453713
  external,
453712
453714
  banner = {},
453713
453715
  platform = "neutral",
453714
- verbose = false,
453716
+ verbose = true,
453715
453717
  metafile = true,
453716
453718
  skipNativeModulesPlugin = false,
453717
453719
  define: define2,
@@ -447000,8 +447000,10 @@ var runTsupBuild = async (context, config, options8) => {
447000
447000
  },
447001
447001
  env: {
447002
447002
  __STORM_CONFIG: JSON.stringify(stormEnv),
447003
- ...process.env,
447004
- ...options8.env
447003
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
447004
+ ret[key2] = options8.env?.[key2];
447005
+ return ret;
447006
+ }, {})
447005
447007
  },
447006
447008
  dtsTsConfig: getNormalizedTsConfig(
447007
447009
  workspaceRoot,
@@ -453711,7 +453713,7 @@ function nodeConfig({
453711
453713
  external,
453712
453714
  banner = {},
453713
453715
  platform = "node",
453714
- verbose = false,
453716
+ verbose = true,
453715
453717
  apiReport = true,
453716
453718
  docModel = true,
453717
453719
  tsdocMetadata = true,
@@ -457266,8 +457266,10 @@ var runTsupBuild = async (context, config, options8) => {
457266
457266
  },
457267
457267
  env: {
457268
457268
  __STORM_CONFIG: JSON.stringify(stormEnv),
457269
- ...process.env,
457270
- ...options8.env
457269
+ ...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
457270
+ ret[key2] = options8.env?.[key2];
457271
+ return ret;
457272
+ }, {})
457271
457273
  },
457272
457274
  dtsTsConfig: getNormalizedTsConfig(
457273
457275
  workspaceRoot,