@storm-software/workspace-tools 1.43.6 → 1.43.7

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.6",
3
+ "version": "1.43.7",
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
@@ -43485,7 +43485,7 @@ module.exports = __toCommonJS(base_exports);
43485
43485
  // packages/config-tools/src/config-file/get-config-file.ts
43486
43486
  var import_cosmiconfig = __toESM(require_dist(), 1);
43487
43487
  var _static_cache = void 0;
43488
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43488
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43489
43489
  var getConfigFile = async (filePath) => {
43490
43490
  if (_static_cache) {
43491
43491
  return _static_cache;
@@ -47308,9 +47308,9 @@ var getDefaultConfig = (config = {}, root) => {
47308
47308
  }
47309
47309
  }
47310
47310
  return StormConfigSchema.parse({
47311
- ...config,
47312
47311
  ...DefaultStormConfig,
47313
- colors: { ...config.colors, ...DefaultColorConfig },
47312
+ ...config,
47313
+ colors: { ...DefaultColorConfig, ...config.colors },
47314
47314
  workspaceRoot,
47315
47315
  name,
47316
47316
  namespace,
@@ -61401,7 +61401,7 @@ var createTailwindConfig = ({ inputPath }) => {
61401
61401
  // packages/config-tools/src/config-file/get-config-file.ts
61402
61402
  var import_cosmiconfig = __toESM(require_dist17(), 1);
61403
61403
  var _static_cache = void 0;
61404
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
61404
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
61405
61405
  var getConfigFile = async (filePath) => {
61406
61406
  if (_static_cache) {
61407
61407
  return _static_cache;
@@ -65224,9 +65224,9 @@ var getDefaultConfig = (config = {}, root) => {
65224
65224
  }
65225
65225
  }
65226
65226
  return StormConfigSchema.parse({
65227
- ...config,
65228
65227
  ...DefaultStormConfig,
65229
- colors: { ...config.colors, ...DefaultColorConfig },
65228
+ ...config,
65229
+ colors: { ...DefaultColorConfig, ...config.colors },
65230
65230
  workspaceRoot,
65231
65231
  name,
65232
65232
  namespace,
@@ -126341,7 +126341,7 @@ var import_tsc = __toESM(require_tsc_impl());
126341
126341
  // packages/config-tools/src/config-file/get-config-file.ts
126342
126342
  var import_cosmiconfig = __toESM(require_dist(), 1);
126343
126343
  var _static_cache = void 0;
126344
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126344
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126345
126345
  var getConfigFile = async (filePath) => {
126346
126346
  if (_static_cache) {
126347
126347
  return _static_cache;
@@ -130164,9 +130164,9 @@ var getDefaultConfig = (config = {}, root) => {
130164
130164
  }
130165
130165
  }
130166
130166
  return StormConfigSchema.parse({
130167
- ...config,
130168
130167
  ...DefaultStormConfig,
130169
- colors: { ...config.colors, ...DefaultColorConfig },
130168
+ ...config,
130169
+ colors: { ...DefaultColorConfig, ...config.colors },
130170
130170
  workspaceRoot,
130171
130171
  name,
130172
130172
  namespace,
@@ -137238,9 +137238,7 @@ ${Object.keys(options).map(
137238
137238
  }
137239
137239
  if (implicitDependencies && implicitDependencies.length > 0) {
137240
137240
  options.external = implicitDependencies.reduce((ret, key) => {
137241
- if (getLogLevel(config?.logLevel) >= LogLevel.DEBUG) {
137242
- writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137243
- }
137241
+ writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137244
137242
  const projectConfig = projectConfigs[key];
137245
137243
  if (projectConfig?.targets?.build) {
137246
137244
  const projectPackageJson = (0, import_devkit2.readJsonFile)(projectConfig.targets?.build.options.project);
@@ -126332,7 +126332,7 @@ module.exports = __toCommonJS(executor_exports);
126332
126332
  // packages/config-tools/src/config-file/get-config-file.ts
126333
126333
  var import_cosmiconfig = __toESM(require_dist(), 1);
126334
126334
  var _static_cache = void 0;
126335
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126335
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126336
126336
  var getConfigFile = async (filePath) => {
126337
126337
  if (_static_cache) {
126338
126338
  return _static_cache;
@@ -130155,9 +130155,9 @@ var getDefaultConfig = (config = {}, root) => {
130155
130155
  }
130156
130156
  }
130157
130157
  return StormConfigSchema.parse({
130158
- ...config,
130159
130158
  ...DefaultStormConfig,
130160
- colors: { ...config.colors, ...DefaultColorConfig },
130159
+ ...config,
130160
+ colors: { ...DefaultColorConfig, ...config.colors },
130161
130161
  workspaceRoot,
130162
130162
  name,
130163
130163
  namespace,
@@ -137269,9 +137269,7 @@ ${Object.keys(options).map(
137269
137269
  }
137270
137270
  if (implicitDependencies && implicitDependencies.length > 0) {
137271
137271
  options.external = implicitDependencies.reduce((ret, key) => {
137272
- if (getLogLevel(config?.logLevel) >= LogLevel.DEBUG) {
137273
- writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137274
- }
137272
+ writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137275
137273
  const projectConfig = projectConfigs[key];
137276
137274
  if (projectConfig?.targets?.build) {
137277
137275
  const projectPackageJson = (0, import_devkit2.readJsonFile)(projectConfig.targets?.build.options.project);
@@ -126332,7 +126332,7 @@ module.exports = __toCommonJS(executor_exports);
126332
126332
  // packages/config-tools/src/config-file/get-config-file.ts
126333
126333
  var import_cosmiconfig = __toESM(require_dist(), 1);
126334
126334
  var _static_cache = void 0;
126335
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126335
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126336
126336
  var getConfigFile = async (filePath) => {
126337
126337
  if (_static_cache) {
126338
126338
  return _static_cache;
@@ -130155,9 +130155,9 @@ var getDefaultConfig = (config = {}, root) => {
130155
130155
  }
130156
130156
  }
130157
130157
  return StormConfigSchema.parse({
130158
- ...config,
130159
130158
  ...DefaultStormConfig,
130160
- colors: { ...config.colors, ...DefaultColorConfig },
130159
+ ...config,
130160
+ colors: { ...DefaultColorConfig, ...config.colors },
130161
130161
  workspaceRoot,
130162
130162
  name,
130163
130163
  namespace,
@@ -137269,9 +137269,7 @@ ${Object.keys(options).map(
137269
137269
  }
137270
137270
  if (implicitDependencies && implicitDependencies.length > 0) {
137271
137271
  options.external = implicitDependencies.reduce((ret, key) => {
137272
- if (getLogLevel(config?.logLevel) >= LogLevel.DEBUG) {
137273
- writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137274
- }
137272
+ writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137275
137273
  const projectConfig = projectConfigs[key];
137276
137274
  if (projectConfig?.targets?.build) {
137277
137275
  const projectPackageJson = (0, import_devkit2.readJsonFile)(projectConfig.targets?.build.options.project);
@@ -126332,7 +126332,7 @@ module.exports = __toCommonJS(executor_exports);
126332
126332
  // packages/config-tools/src/config-file/get-config-file.ts
126333
126333
  var import_cosmiconfig = __toESM(require_dist(), 1);
126334
126334
  var _static_cache = void 0;
126335
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126335
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
126336
126336
  var getConfigFile = async (filePath) => {
126337
126337
  if (_static_cache) {
126338
126338
  return _static_cache;
@@ -130155,9 +130155,9 @@ var getDefaultConfig = (config = {}, root) => {
130155
130155
  }
130156
130156
  }
130157
130157
  return StormConfigSchema.parse({
130158
- ...config,
130159
130158
  ...DefaultStormConfig,
130160
- colors: { ...config.colors, ...DefaultColorConfig },
130159
+ ...config,
130160
+ colors: { ...DefaultColorConfig, ...config.colors },
130161
130161
  workspaceRoot,
130162
130162
  name,
130163
130163
  namespace,
@@ -137269,9 +137269,7 @@ ${Object.keys(options).map(
137269
137269
  }
137270
137270
  if (implicitDependencies && implicitDependencies.length > 0) {
137271
137271
  options.external = implicitDependencies.reduce((ret, key) => {
137272
- if (getLogLevel(config?.logLevel) >= LogLevel.DEBUG) {
137273
- writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137274
- }
137272
+ writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
137275
137273
  const projectConfig = projectConfigs[key];
137276
137274
  if (projectConfig?.targets?.build) {
137277
137275
  const projectPackageJson = (0, import_devkit2.readJsonFile)(projectConfig.targets?.build.options.project);
@@ -43478,7 +43478,7 @@ var import_devkit2 = __toESM(require_devkit());
43478
43478
  // packages/config-tools/src/config-file/get-config-file.ts
43479
43479
  var import_cosmiconfig = __toESM(require_dist(), 1);
43480
43480
  var _static_cache = void 0;
43481
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43481
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43482
43482
  var getConfigFile = async (filePath) => {
43483
43483
  if (_static_cache) {
43484
43484
  return _static_cache;
@@ -47301,9 +47301,9 @@ var getDefaultConfig = (config = {}, root) => {
47301
47301
  }
47302
47302
  }
47303
47303
  return StormConfigSchema.parse({
47304
- ...config,
47305
47304
  ...DefaultStormConfig,
47306
- colors: { ...config.colors, ...DefaultColorConfig },
47305
+ ...config,
47306
+ colors: { ...DefaultColorConfig, ...config.colors },
47307
47307
  workspaceRoot,
47308
47308
  name,
47309
47309
  namespace,
@@ -26236,7 +26236,7 @@ var import_devkit = __toESM(require_devkit());
26236
26236
  // packages/config-tools/src/config-file/get-config-file.ts
26237
26237
  var import_cosmiconfig = __toESM(require_dist(), 1);
26238
26238
  var _static_cache = void 0;
26239
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
26239
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
26240
26240
  var getConfigFile = async (filePath) => {
26241
26241
  if (_static_cache) {
26242
26242
  return _static_cache;
@@ -30059,9 +30059,9 @@ var getDefaultConfig = (config = {}, root) => {
30059
30059
  }
30060
30060
  }
30061
30061
  return StormConfigSchema.parse({
30062
- ...config,
30063
30062
  ...DefaultStormConfig,
30064
- colors: { ...config.colors, ...DefaultColorConfig },
30063
+ ...config,
30064
+ colors: { ...DefaultColorConfig, ...config.colors },
30065
30065
  workspaceRoot,
30066
30066
  name,
30067
30067
  namespace,
@@ -43478,7 +43478,7 @@ var import_devkit2 = __toESM(require_devkit());
43478
43478
  // packages/config-tools/src/config-file/get-config-file.ts
43479
43479
  var import_cosmiconfig = __toESM(require_dist(), 1);
43480
43480
  var _static_cache = void 0;
43481
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43481
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43482
43482
  var getConfigFile = async (filePath) => {
43483
43483
  if (_static_cache) {
43484
43484
  return _static_cache;
@@ -47301,9 +47301,9 @@ var getDefaultConfig = (config = {}, root) => {
47301
47301
  }
47302
47302
  }
47303
47303
  return StormConfigSchema.parse({
47304
- ...config,
47305
47304
  ...DefaultStormConfig,
47306
- colors: { ...config.colors, ...DefaultColorConfig },
47305
+ ...config,
47306
+ colors: { ...DefaultColorConfig, ...config.colors },
47307
47307
  workspaceRoot,
47308
47308
  name,
47309
47309
  namespace,
@@ -43478,7 +43478,7 @@ var import_devkit2 = __toESM(require_devkit());
43478
43478
  // packages/config-tools/src/config-file/get-config-file.ts
43479
43479
  var import_cosmiconfig = __toESM(require_dist(), 1);
43480
43480
  var _static_cache = void 0;
43481
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43481
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
43482
43482
  var getConfigFile = async (filePath) => {
43483
43483
  if (_static_cache) {
43484
43484
  return _static_cache;
@@ -47301,9 +47301,9 @@ var getDefaultConfig = (config = {}, root) => {
47301
47301
  }
47302
47302
  }
47303
47303
  return StormConfigSchema.parse({
47304
- ...config,
47305
47304
  ...DefaultStormConfig,
47306
- colors: { ...config.colors, ...DefaultColorConfig },
47305
+ ...config,
47306
+ colors: { ...DefaultColorConfig, ...config.colors },
47307
47307
  workspaceRoot,
47308
47308
  name,
47309
47309
  namespace,
@@ -26237,7 +26237,7 @@ var import_devkit = __toESM(require_devkit());
26237
26237
  // packages/config-tools/src/config-file/get-config-file.ts
26238
26238
  var import_cosmiconfig = __toESM(require_dist(), 1);
26239
26239
  var _static_cache = void 0;
26240
- var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
26240
+ var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
26241
26241
  var getConfigFile = async (filePath) => {
26242
26242
  if (_static_cache) {
26243
26243
  return _static_cache;
@@ -30060,9 +30060,9 @@ var getDefaultConfig = (config = {}, root) => {
30060
30060
  }
30061
30061
  }
30062
30062
  return StormConfigSchema.parse({
30063
- ...config,
30064
30063
  ...DefaultStormConfig,
30065
- colors: { ...config.colors, ...DefaultColorConfig },
30064
+ ...config,
30065
+ colors: { ...DefaultColorConfig, ...config.colors },
30066
30066
  workspaceRoot,
30067
30067
  name,
30068
30068
  namespace,