@storm-software/workspace-tools 1.43.9 → 1.43.10

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.43.9",
3
+ "version": "1.43.10",
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
@@ -47677,15 +47677,19 @@ var loadStormConfig = async (workspaceRoot) => {
47677
47677
  if (!_workspaceRoot) {
47678
47678
  _workspaceRoot = findWorkspaceRoot();
47679
47679
  }
47680
- const configFile = {
47681
- ...await getConfigFile(_workspaceRoot),
47682
- ...getConfigEnv()
47683
- };
47680
+ const configFile = await getConfigFile(_workspaceRoot);
47681
+ const configEnv = getConfigEnv();
47682
+ for (const key of Object.keys(configEnv)) {
47683
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
47684
+ configFile[key] = configEnv[key];
47685
+ }
47686
+ }
47684
47687
  const config = StormConfigSchema.parse(configFile);
47685
47688
  setConfigEnv(config);
47686
47689
  console.debug("\n\n");
47687
47690
  console.debug(`Loaded Storm config from ${config.configFile}`);
47688
47691
  for (const key of Object.keys(configFile)) {
47692
+ console.debug(` ----- ${key} ----- `);
47689
47693
  console.debug(configFile[key]);
47690
47694
  }
47691
47695
  console.debug("\n\n");
@@ -65593,15 +65593,19 @@ var loadStormConfig = async (workspaceRoot) => {
65593
65593
  if (!_workspaceRoot) {
65594
65594
  _workspaceRoot = findWorkspaceRoot();
65595
65595
  }
65596
- const configFile = {
65597
- ...await getConfigFile(_workspaceRoot),
65598
- ...getConfigEnv()
65599
- };
65596
+ const configFile = await getConfigFile(_workspaceRoot);
65597
+ const configEnv = getConfigEnv();
65598
+ for (const key of Object.keys(configEnv)) {
65599
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
65600
+ configFile[key] = configEnv[key];
65601
+ }
65602
+ }
65600
65603
  const config = StormConfigSchema.parse(configFile);
65601
65604
  setConfigEnv(config);
65602
65605
  console.debug("\n\n");
65603
65606
  console.debug(`Loaded Storm config from ${config.configFile}`);
65604
65607
  for (const key of Object.keys(configFile)) {
65608
+ console.debug(` ----- ${key} ----- `);
65605
65609
  console.debug(configFile[key]);
65606
65610
  }
65607
65611
  console.debug("\n\n");
@@ -130534,15 +130534,19 @@ var loadStormConfig = async (workspaceRoot) => {
130534
130534
  if (!_workspaceRoot) {
130535
130535
  _workspaceRoot = findWorkspaceRoot();
130536
130536
  }
130537
- const configFile = {
130538
- ...await getConfigFile(_workspaceRoot),
130539
- ...getConfigEnv()
130540
- };
130537
+ const configFile = await getConfigFile(_workspaceRoot);
130538
+ const configEnv = getConfigEnv();
130539
+ for (const key of Object.keys(configEnv)) {
130540
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
130541
+ configFile[key] = configEnv[key];
130542
+ }
130543
+ }
130541
130544
  const config = StormConfigSchema.parse(configFile);
130542
130545
  setConfigEnv(config);
130543
130546
  console.debug("\n\n");
130544
130547
  console.debug(`Loaded Storm config from ${config.configFile}`);
130545
130548
  for (const key of Object.keys(configFile)) {
130549
+ console.debug(` ----- ${key} ----- `);
130546
130550
  console.debug(configFile[key]);
130547
130551
  }
130548
130552
  console.debug("\n\n");
@@ -130525,15 +130525,19 @@ var loadStormConfig = async (workspaceRoot) => {
130525
130525
  if (!_workspaceRoot) {
130526
130526
  _workspaceRoot = findWorkspaceRoot();
130527
130527
  }
130528
- const configFile = {
130529
- ...await getConfigFile(_workspaceRoot),
130530
- ...getConfigEnv()
130531
- };
130528
+ const configFile = await getConfigFile(_workspaceRoot);
130529
+ const configEnv = getConfigEnv();
130530
+ for (const key of Object.keys(configEnv)) {
130531
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
130532
+ configFile[key] = configEnv[key];
130533
+ }
130534
+ }
130532
130535
  const config = StormConfigSchema.parse(configFile);
130533
130536
  setConfigEnv(config);
130534
130537
  console.debug("\n\n");
130535
130538
  console.debug(`Loaded Storm config from ${config.configFile}`);
130536
130539
  for (const key of Object.keys(configFile)) {
130540
+ console.debug(` ----- ${key} ----- `);
130537
130541
  console.debug(configFile[key]);
130538
130542
  }
130539
130543
  console.debug("\n\n");
@@ -130525,15 +130525,19 @@ var loadStormConfig = async (workspaceRoot) => {
130525
130525
  if (!_workspaceRoot) {
130526
130526
  _workspaceRoot = findWorkspaceRoot();
130527
130527
  }
130528
- const configFile = {
130529
- ...await getConfigFile(_workspaceRoot),
130530
- ...getConfigEnv()
130531
- };
130528
+ const configFile = await getConfigFile(_workspaceRoot);
130529
+ const configEnv = getConfigEnv();
130530
+ for (const key of Object.keys(configEnv)) {
130531
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
130532
+ configFile[key] = configEnv[key];
130533
+ }
130534
+ }
130532
130535
  const config = StormConfigSchema.parse(configFile);
130533
130536
  setConfigEnv(config);
130534
130537
  console.debug("\n\n");
130535
130538
  console.debug(`Loaded Storm config from ${config.configFile}`);
130536
130539
  for (const key of Object.keys(configFile)) {
130540
+ console.debug(` ----- ${key} ----- `);
130537
130541
  console.debug(configFile[key]);
130538
130542
  }
130539
130543
  console.debug("\n\n");
@@ -130525,15 +130525,19 @@ var loadStormConfig = async (workspaceRoot) => {
130525
130525
  if (!_workspaceRoot) {
130526
130526
  _workspaceRoot = findWorkspaceRoot();
130527
130527
  }
130528
- const configFile = {
130529
- ...await getConfigFile(_workspaceRoot),
130530
- ...getConfigEnv()
130531
- };
130528
+ const configFile = await getConfigFile(_workspaceRoot);
130529
+ const configEnv = getConfigEnv();
130530
+ for (const key of Object.keys(configEnv)) {
130531
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
130532
+ configFile[key] = configEnv[key];
130533
+ }
130534
+ }
130532
130535
  const config = StormConfigSchema.parse(configFile);
130533
130536
  setConfigEnv(config);
130534
130537
  console.debug("\n\n");
130535
130538
  console.debug(`Loaded Storm config from ${config.configFile}`);
130536
130539
  for (const key of Object.keys(configFile)) {
130540
+ console.debug(` ----- ${key} ----- `);
130537
130541
  console.debug(configFile[key]);
130538
130542
  }
130539
130543
  console.debug("\n\n");
@@ -47670,15 +47670,19 @@ var loadStormConfig = async (workspaceRoot) => {
47670
47670
  if (!_workspaceRoot) {
47671
47671
  _workspaceRoot = findWorkspaceRoot();
47672
47672
  }
47673
- const configFile = {
47674
- ...await getConfigFile(_workspaceRoot),
47675
- ...getConfigEnv()
47676
- };
47673
+ const configFile = await getConfigFile(_workspaceRoot);
47674
+ const configEnv = getConfigEnv();
47675
+ for (const key of Object.keys(configEnv)) {
47676
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
47677
+ configFile[key] = configEnv[key];
47678
+ }
47679
+ }
47677
47680
  const config = StormConfigSchema.parse(configFile);
47678
47681
  setConfigEnv(config);
47679
47682
  console.debug("\n\n");
47680
47683
  console.debug(`Loaded Storm config from ${config.configFile}`);
47681
47684
  for (const key of Object.keys(configFile)) {
47685
+ console.debug(` ----- ${key} ----- `);
47682
47686
  console.debug(configFile[key]);
47683
47687
  }
47684
47688
  console.debug("\n\n");
@@ -30428,15 +30428,19 @@ var loadStormConfig = async (workspaceRoot) => {
30428
30428
  if (!_workspaceRoot) {
30429
30429
  _workspaceRoot = findWorkspaceRoot();
30430
30430
  }
30431
- const configFile = {
30432
- ...await getConfigFile(_workspaceRoot),
30433
- ...getConfigEnv()
30434
- };
30431
+ const configFile = await getConfigFile(_workspaceRoot);
30432
+ const configEnv = getConfigEnv();
30433
+ for (const key of Object.keys(configEnv)) {
30434
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
30435
+ configFile[key] = configEnv[key];
30436
+ }
30437
+ }
30435
30438
  const config = StormConfigSchema.parse(configFile);
30436
30439
  setConfigEnv(config);
30437
30440
  console.debug("\n\n");
30438
30441
  console.debug(`Loaded Storm config from ${config.configFile}`);
30439
30442
  for (const key of Object.keys(configFile)) {
30443
+ console.debug(` ----- ${key} ----- `);
30440
30444
  console.debug(configFile[key]);
30441
30445
  }
30442
30446
  console.debug("\n\n");
@@ -47670,15 +47670,19 @@ var loadStormConfig = async (workspaceRoot) => {
47670
47670
  if (!_workspaceRoot) {
47671
47671
  _workspaceRoot = findWorkspaceRoot();
47672
47672
  }
47673
- const configFile = {
47674
- ...await getConfigFile(_workspaceRoot),
47675
- ...getConfigEnv()
47676
- };
47673
+ const configFile = await getConfigFile(_workspaceRoot);
47674
+ const configEnv = getConfigEnv();
47675
+ for (const key of Object.keys(configEnv)) {
47676
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
47677
+ configFile[key] = configEnv[key];
47678
+ }
47679
+ }
47677
47680
  const config = StormConfigSchema.parse(configFile);
47678
47681
  setConfigEnv(config);
47679
47682
  console.debug("\n\n");
47680
47683
  console.debug(`Loaded Storm config from ${config.configFile}`);
47681
47684
  for (const key of Object.keys(configFile)) {
47685
+ console.debug(` ----- ${key} ----- `);
47682
47686
  console.debug(configFile[key]);
47683
47687
  }
47684
47688
  console.debug("\n\n");
@@ -47670,15 +47670,19 @@ var loadStormConfig = async (workspaceRoot) => {
47670
47670
  if (!_workspaceRoot) {
47671
47671
  _workspaceRoot = findWorkspaceRoot();
47672
47672
  }
47673
- const configFile = {
47674
- ...await getConfigFile(_workspaceRoot),
47675
- ...getConfigEnv()
47676
- };
47673
+ const configFile = await getConfigFile(_workspaceRoot);
47674
+ const configEnv = getConfigEnv();
47675
+ for (const key of Object.keys(configEnv)) {
47676
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
47677
+ configFile[key] = configEnv[key];
47678
+ }
47679
+ }
47677
47680
  const config = StormConfigSchema.parse(configFile);
47678
47681
  setConfigEnv(config);
47679
47682
  console.debug("\n\n");
47680
47683
  console.debug(`Loaded Storm config from ${config.configFile}`);
47681
47684
  for (const key of Object.keys(configFile)) {
47685
+ console.debug(` ----- ${key} ----- `);
47682
47686
  console.debug(configFile[key]);
47683
47687
  }
47684
47688
  console.debug("\n\n");
@@ -30429,15 +30429,19 @@ var loadStormConfig = async (workspaceRoot) => {
30429
30429
  if (!_workspaceRoot) {
30430
30430
  _workspaceRoot = findWorkspaceRoot();
30431
30431
  }
30432
- const configFile = {
30433
- ...await getConfigFile(_workspaceRoot),
30434
- ...getConfigEnv()
30435
- };
30432
+ const configFile = await getConfigFile(_workspaceRoot);
30433
+ const configEnv = getConfigEnv();
30434
+ for (const key of Object.keys(configEnv)) {
30435
+ if (configEnv[key] !== void 0 && configEnv[key] !== null) {
30436
+ configFile[key] = configEnv[key];
30437
+ }
30438
+ }
30436
30439
  const config = StormConfigSchema.parse(configFile);
30437
30440
  setConfigEnv(config);
30438
30441
  console.debug("\n\n");
30439
30442
  console.debug(`Loaded Storm config from ${config.configFile}`);
30440
30443
  for (const key of Object.keys(configFile)) {
30444
+ console.debug(` ----- ${key} ----- `);
30441
30445
  console.debug(configFile[key]);
30442
30446
  }
30443
30447
  console.debug("\n\n");