@storm-software/workspace-tools 1.41.1 → 1.42.0

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.41.1",
3
+ "version": "1.42.0",
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
@@ -43541,7 +43541,9 @@ var getConfigFile = async (filePath) => {
43541
43541
  return void 0;
43542
43542
  }
43543
43543
  const config = cosmiconfigResult.config ?? {};
43544
- cosmiconfigResult.filepath && (config.configFile = cosmiconfigResult.filepath);
43544
+ if (cosmiconfigResult.filepath) {
43545
+ config.configFile = cosmiconfigResult.filepath;
43546
+ }
43545
43547
  config.runtimeVersion = "0.0.1";
43546
43548
  _static_cache = config;
43547
43549
  return config;
@@ -61457,7 +61457,9 @@ var getConfigFile = async (filePath) => {
61457
61457
  return void 0;
61458
61458
  }
61459
61459
  const config = cosmiconfigResult.config ?? {};
61460
- cosmiconfigResult.filepath && (config.configFile = cosmiconfigResult.filepath);
61460
+ if (cosmiconfigResult.filepath) {
61461
+ config.configFile = cosmiconfigResult.filepath;
61462
+ }
61461
61463
  config.runtimeVersion = "0.0.1";
61462
61464
  _static_cache = config;
61463
61465
  return config;