@powerlines/nx 0.10.62 → 0.10.63

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/{chunk-73TJKRM4.js → chunk-2I2COQXO.js} +2 -2
  3. package/dist/{chunk-2X6KKBDQ.js → chunk-533WMZH3.js} +2 -2
  4. package/dist/{chunk-IIYV2EGQ.js → chunk-6BIJYAAM.js} +58 -26
  5. package/dist/{chunk-XUWMCW4V.mjs → chunk-AITHWYXX.mjs} +1 -1
  6. package/dist/{chunk-ZDQJ5X22.mjs → chunk-CZ5MSBO3.mjs} +1 -1
  7. package/dist/{chunk-AXGRNHCK.js → chunk-IPCWDRHB.js} +2 -2
  8. package/dist/{chunk-XF2ZF52T.mjs → chunk-NTS4NV36.mjs} +1 -1
  9. package/dist/{chunk-HDZBAF4F.js → chunk-RHBHSB3N.js} +2 -2
  10. package/dist/{chunk-Y3NVJ2RA.mjs → chunk-RINC6MFJ.mjs} +58 -26
  11. package/dist/{chunk-FNCKIEHO.js → chunk-SC4TK6EQ.js} +2 -2
  12. package/dist/{chunk-VYGD742V.mjs → chunk-WCPUUN4O.mjs} +1 -1
  13. package/dist/{chunk-3ZZUXF6K.mjs → chunk-XNSEB5AI.mjs} +1 -1
  14. package/dist/executors.js +11 -11
  15. package/dist/executors.mjs +6 -6
  16. package/dist/index.js +11 -11
  17. package/dist/index.mjs +6 -6
  18. package/dist/src/base/base-executor.js +2 -2
  19. package/dist/src/base/base-executor.mjs +1 -1
  20. package/dist/src/executors/build/executor.js +4 -4
  21. package/dist/src/executors/build/executor.mjs +2 -2
  22. package/dist/src/executors/clean/executor.js +4 -4
  23. package/dist/src/executors/clean/executor.mjs +2 -2
  24. package/dist/src/executors/docs/executor.js +4 -4
  25. package/dist/src/executors/docs/executor.mjs +2 -2
  26. package/dist/src/executors/lint/executor.js +4 -4
  27. package/dist/src/executors/lint/executor.mjs +2 -2
  28. package/dist/src/executors/prepare/executor.js +4 -4
  29. package/dist/src/executors/prepare/executor.mjs +2 -2
  30. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.10.62](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.62) (12/08/2025)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **nx:** Resolve issue with missing assets in build output directory
10
+ ([9b6f8980](https://github.com/storm-software/powerlines/commit/9b6f8980))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **powerlines** to **v0.30.13**
15
+
5
16
  ## [0.10.61](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.61) (12/08/2025)
6
17
 
7
18
  ### Updated Dependencies
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIIYV2EGQ_js = require('./chunk-IIYV2EGQ.js');
3
+ var chunk6BIJYAAM_js = require('./chunk-6BIJYAAM.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
  var defu = require('defu');
6
6
 
@@ -19,7 +19,7 @@ async function executorFn(context, api) {
19
19
  };
20
20
  }
21
21
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
22
- var executor = chunkIIYV2EGQ_js.withExecutor("prepare", executorFn);
22
+ var executor = chunk6BIJYAAM_js.withExecutor("prepare", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIIYV2EGQ_js = require('./chunk-IIYV2EGQ.js');
3
+ var chunk6BIJYAAM_js = require('./chunk-6BIJYAAM.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
  var defu = require('defu');
6
6
 
@@ -19,7 +19,7 @@ async function executorFn(context, api) {
19
19
  };
20
20
  }
21
21
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
22
- var executor = chunkIIYV2EGQ_js.withExecutor("build", executorFn);
22
+ var executor = chunk6BIJYAAM_js.withExecutor("build", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -702,7 +702,8 @@ async function resolveTsconfig(context) {
702
702
  }
703
703
  }
704
704
  chunkSHUYVCID_js.__name(resolveTsconfig, "resolveTsconfig");
705
- var DEFAULT_ENVIRONMENT = "default";
705
+ var DEFAULT_ENVIRONMENT = "__DEFAULT__";
706
+ var GLOBAL_ENVIRONMENT = "__GLOBAL__";
706
707
  function createEnvironment(name, userConfig) {
707
708
  return defu6__default.default(userConfig.environments?.[name] ?? {}, {
708
709
  name,
@@ -3833,6 +3834,12 @@ var PowerlinesAPIContext = class _PowerlinesAPIContext extends PowerlinesContext
3833
3834
  }
3834
3835
  return environment;
3835
3836
  }
3837
+ /**
3838
+ * A safe version of `getEnvironment` that returns `undefined` if the environment is not found
3839
+ *
3840
+ * @param name - The name of the environment to retrieve.
3841
+ * @returns The requested environment context or `undefined` if not found.
3842
+ */
3836
3843
  async getEnvironmentSafe(name) {
3837
3844
  try {
3838
3845
  return await this.getEnvironment(name);
@@ -3840,6 +3847,24 @@ var PowerlinesAPIContext = class _PowerlinesAPIContext extends PowerlinesContext
3840
3847
  return void 0;
3841
3848
  }
3842
3849
  }
3850
+ /**
3851
+ * A function to merge all configured environments into a single context.
3852
+ *
3853
+ * @remarks
3854
+ * If only one environment is configured, that environment will be returned directly.
3855
+ *
3856
+ * @returns A promise that resolves to a merged/global environment context.
3857
+ */
3858
+ async toEnvironment() {
3859
+ let environment;
3860
+ if (Object.keys(this.environments).length > 1) {
3861
+ environment = await this.in(createEnvironment(GLOBAL_ENVIRONMENT, this.config.userConfig));
3862
+ this.log(types.LogLevelLabel.DEBUG, `Combined all ${Object.keys(this.environments).length} environments into a single global context.`);
3863
+ } else {
3864
+ environment = await this.getEnvironment();
3865
+ }
3866
+ return environment;
3867
+ }
3843
3868
  };
3844
3869
  function getBaseFileHeader(context) {
3845
3870
  return `
@@ -4215,32 +4240,13 @@ ${formatTypes(types$1)}
4215
4240
  }) {
4216
4241
  this.context.log(types.LogLevelLabel.INFO, "\u{1F4E6} Building the Powerlines project");
4217
4242
  await this.prepare(inlineConfig);
4218
- await this.#executeEnvironments(async (context) => {
4219
- await this.callHook("build", {
4220
- environment: context,
4221
- order: "pre"
4222
- });
4223
- await this.callHook("build", {
4224
- environment: context,
4225
- order: "normal"
4226
- });
4227
- if (context.config.output.buildPath !== context.config.output.outputPath) {
4228
- const sourcePath = append.appendPath(context.config.output.buildPath, context.workspaceConfig.workspaceRoot);
4229
- const destinationPath = joinPaths.joinPaths(append.appendPath(context.config.output.outputPath, context.workspaceConfig.workspaceRoot), "dist");
4230
- if (sourcePath !== destinationPath) {
4231
- context.log(types.LogLevelLabel.INFO, `Copying build output files from project's build directory (${context.config.output.buildPath}) to the workspace's output directory (${context.config.output.outputPath}).`);
4232
- await context.fs.copy(sourcePath, destinationPath);
4233
- }
4234
- }
4235
- await Promise.all(context.config.output.assets.map(async (asset) => {
4236
- context.log(types.LogLevelLabel.DEBUG, `Copying asset(s): ${chalk5__default.default.redBright(context.workspaceConfig.workspaceRoot === asset.input ? asset.glob : joinPaths.joinPaths(replace.replacePath(asset.input, context.workspaceConfig.workspaceRoot), asset.glob))} -> ${chalk5__default.default.greenBright(joinPaths.joinPaths(replace.replacePath(asset.output, context.workspaceConfig.workspaceRoot), asset.glob))} ${Array.isArray(asset.ignore) && asset.ignore.length > 0 ? ` (ignoring: ${asset.ignore.map((i) => chalk5__default.default.yellowBright(i)).join(", ")})` : ""}`);
4237
- await context.fs.copy(asset, asset.output);
4238
- }));
4239
- await this.callHook("build", {
4240
- environment: context,
4241
- order: "post"
4243
+ if (this.context.config.singleBuild) {
4244
+ await this.#handleBuild(await this.#context.toEnvironment());
4245
+ } else {
4246
+ await this.#executeEnvironments(async (context) => {
4247
+ await this.#handleBuild(context);
4242
4248
  });
4243
- });
4249
+ }
4244
4250
  this.context.log(types.LogLevelLabel.TRACE, "Powerlines build completed");
4245
4251
  }
4246
4252
  /**
@@ -4329,6 +4335,32 @@ ${formatTypes(types$1)}
4329
4335
  async [Symbol.asyncDispose]() {
4330
4336
  await this.finalize();
4331
4337
  }
4338
+ async #handleBuild(context) {
4339
+ await this.callHook("build", {
4340
+ environment: context,
4341
+ order: "pre"
4342
+ });
4343
+ await this.callHook("build", {
4344
+ environment: context,
4345
+ order: "normal"
4346
+ });
4347
+ if (context.config.output.buildPath !== context.config.output.outputPath) {
4348
+ const sourcePath = append.appendPath(context.config.output.buildPath, context.workspaceConfig.workspaceRoot);
4349
+ const destinationPath = joinPaths.joinPaths(append.appendPath(context.config.output.outputPath, context.workspaceConfig.workspaceRoot), "dist");
4350
+ if (sourcePath !== destinationPath) {
4351
+ context.log(types.LogLevelLabel.INFO, `Copying build output files from project's build directory (${context.config.output.buildPath}) to the workspace's output directory (${context.config.output.outputPath}).`);
4352
+ await context.fs.copy(sourcePath, destinationPath);
4353
+ }
4354
+ }
4355
+ await Promise.all(context.config.output.assets.map(async (asset) => {
4356
+ context.log(types.LogLevelLabel.DEBUG, `Copying asset(s): ${chalk5__default.default.redBright(context.workspaceConfig.workspaceRoot === asset.input ? asset.glob : joinPaths.joinPaths(replace.replacePath(asset.input, context.workspaceConfig.workspaceRoot), asset.glob))} -> ${chalk5__default.default.greenBright(joinPaths.joinPaths(replace.replacePath(asset.output, context.workspaceConfig.workspaceRoot), asset.glob))} ${Array.isArray(asset.ignore) && asset.ignore.length > 0 ? ` (ignoring: ${asset.ignore.map((i) => chalk5__default.default.yellowBright(i)).join(", ")})` : ""}`);
4357
+ await context.fs.copy(asset, asset.output);
4358
+ }));
4359
+ await this.callHook("build", {
4360
+ environment: context,
4361
+ order: "post"
4362
+ });
4363
+ }
4332
4364
  /**
4333
4365
  * Get the configured environments
4334
4366
  *
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-Y3NVJ2RA.mjs';
1
+ import { withExecutor } from './chunk-RINC6MFJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-Y3NVJ2RA.mjs';
1
+ import { withExecutor } from './chunk-RINC6MFJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/docs/executor.ts
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIIYV2EGQ_js = require('./chunk-IIYV2EGQ.js');
3
+ var chunk6BIJYAAM_js = require('./chunk-6BIJYAAM.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
 
6
6
  // src/executors/lint/executor.ts
@@ -11,7 +11,7 @@ async function executorFn(context, api) {
11
11
  };
12
12
  }
13
13
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
14
- var executor = chunkIIYV2EGQ_js.withExecutor("lint", executorFn);
14
+ var executor = chunk6BIJYAAM_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-Y3NVJ2RA.mjs';
1
+ import { withExecutor } from './chunk-RINC6MFJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIIYV2EGQ_js = require('./chunk-IIYV2EGQ.js');
3
+ var chunk6BIJYAAM_js = require('./chunk-6BIJYAAM.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
 
6
6
  // src/executors/docs/executor.ts
@@ -11,7 +11,7 @@ async function executorFn(context, api) {
11
11
  };
12
12
  }
13
13
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
14
- var executor = chunkIIYV2EGQ_js.withExecutor("docs", executorFn);
14
+ var executor = chunk6BIJYAAM_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -673,7 +673,8 @@ async function resolveTsconfig(context) {
673
673
  }
674
674
  }
675
675
  __name(resolveTsconfig, "resolveTsconfig");
676
- var DEFAULT_ENVIRONMENT = "default";
676
+ var DEFAULT_ENVIRONMENT = "__DEFAULT__";
677
+ var GLOBAL_ENVIRONMENT = "__GLOBAL__";
677
678
  function createEnvironment(name, userConfig) {
678
679
  return defu6(userConfig.environments?.[name] ?? {}, {
679
680
  name,
@@ -3804,6 +3805,12 @@ var PowerlinesAPIContext = class _PowerlinesAPIContext extends PowerlinesContext
3804
3805
  }
3805
3806
  return environment;
3806
3807
  }
3808
+ /**
3809
+ * A safe version of `getEnvironment` that returns `undefined` if the environment is not found
3810
+ *
3811
+ * @param name - The name of the environment to retrieve.
3812
+ * @returns The requested environment context or `undefined` if not found.
3813
+ */
3807
3814
  async getEnvironmentSafe(name) {
3808
3815
  try {
3809
3816
  return await this.getEnvironment(name);
@@ -3811,6 +3818,24 @@ var PowerlinesAPIContext = class _PowerlinesAPIContext extends PowerlinesContext
3811
3818
  return void 0;
3812
3819
  }
3813
3820
  }
3821
+ /**
3822
+ * A function to merge all configured environments into a single context.
3823
+ *
3824
+ * @remarks
3825
+ * If only one environment is configured, that environment will be returned directly.
3826
+ *
3827
+ * @returns A promise that resolves to a merged/global environment context.
3828
+ */
3829
+ async toEnvironment() {
3830
+ let environment;
3831
+ if (Object.keys(this.environments).length > 1) {
3832
+ environment = await this.in(createEnvironment(GLOBAL_ENVIRONMENT, this.config.userConfig));
3833
+ this.log(LogLevelLabel.DEBUG, `Combined all ${Object.keys(this.environments).length} environments into a single global context.`);
3834
+ } else {
3835
+ environment = await this.getEnvironment();
3836
+ }
3837
+ return environment;
3838
+ }
3814
3839
  };
3815
3840
  function getBaseFileHeader(context) {
3816
3841
  return `
@@ -4186,32 +4211,13 @@ ${formatTypes(types)}
4186
4211
  }) {
4187
4212
  this.context.log(LogLevelLabel.INFO, "\u{1F4E6} Building the Powerlines project");
4188
4213
  await this.prepare(inlineConfig);
4189
- await this.#executeEnvironments(async (context) => {
4190
- await this.callHook("build", {
4191
- environment: context,
4192
- order: "pre"
4193
- });
4194
- await this.callHook("build", {
4195
- environment: context,
4196
- order: "normal"
4197
- });
4198
- if (context.config.output.buildPath !== context.config.output.outputPath) {
4199
- const sourcePath = appendPath(context.config.output.buildPath, context.workspaceConfig.workspaceRoot);
4200
- const destinationPath = joinPaths$1(appendPath(context.config.output.outputPath, context.workspaceConfig.workspaceRoot), "dist");
4201
- if (sourcePath !== destinationPath) {
4202
- context.log(LogLevelLabel.INFO, `Copying build output files from project's build directory (${context.config.output.buildPath}) to the workspace's output directory (${context.config.output.outputPath}).`);
4203
- await context.fs.copy(sourcePath, destinationPath);
4204
- }
4205
- }
4206
- await Promise.all(context.config.output.assets.map(async (asset) => {
4207
- context.log(LogLevelLabel.DEBUG, `Copying asset(s): ${chalk5.redBright(context.workspaceConfig.workspaceRoot === asset.input ? asset.glob : joinPaths$1(replacePath(asset.input, context.workspaceConfig.workspaceRoot), asset.glob))} -> ${chalk5.greenBright(joinPaths$1(replacePath(asset.output, context.workspaceConfig.workspaceRoot), asset.glob))} ${Array.isArray(asset.ignore) && asset.ignore.length > 0 ? ` (ignoring: ${asset.ignore.map((i) => chalk5.yellowBright(i)).join(", ")})` : ""}`);
4208
- await context.fs.copy(asset, asset.output);
4209
- }));
4210
- await this.callHook("build", {
4211
- environment: context,
4212
- order: "post"
4214
+ if (this.context.config.singleBuild) {
4215
+ await this.#handleBuild(await this.#context.toEnvironment());
4216
+ } else {
4217
+ await this.#executeEnvironments(async (context) => {
4218
+ await this.#handleBuild(context);
4213
4219
  });
4214
- });
4220
+ }
4215
4221
  this.context.log(LogLevelLabel.TRACE, "Powerlines build completed");
4216
4222
  }
4217
4223
  /**
@@ -4300,6 +4306,32 @@ ${formatTypes(types)}
4300
4306
  async [Symbol.asyncDispose]() {
4301
4307
  await this.finalize();
4302
4308
  }
4309
+ async #handleBuild(context) {
4310
+ await this.callHook("build", {
4311
+ environment: context,
4312
+ order: "pre"
4313
+ });
4314
+ await this.callHook("build", {
4315
+ environment: context,
4316
+ order: "normal"
4317
+ });
4318
+ if (context.config.output.buildPath !== context.config.output.outputPath) {
4319
+ const sourcePath = appendPath(context.config.output.buildPath, context.workspaceConfig.workspaceRoot);
4320
+ const destinationPath = joinPaths$1(appendPath(context.config.output.outputPath, context.workspaceConfig.workspaceRoot), "dist");
4321
+ if (sourcePath !== destinationPath) {
4322
+ context.log(LogLevelLabel.INFO, `Copying build output files from project's build directory (${context.config.output.buildPath}) to the workspace's output directory (${context.config.output.outputPath}).`);
4323
+ await context.fs.copy(sourcePath, destinationPath);
4324
+ }
4325
+ }
4326
+ await Promise.all(context.config.output.assets.map(async (asset) => {
4327
+ context.log(LogLevelLabel.DEBUG, `Copying asset(s): ${chalk5.redBright(context.workspaceConfig.workspaceRoot === asset.input ? asset.glob : joinPaths$1(replacePath(asset.input, context.workspaceConfig.workspaceRoot), asset.glob))} -> ${chalk5.greenBright(joinPaths$1(replacePath(asset.output, context.workspaceConfig.workspaceRoot), asset.glob))} ${Array.isArray(asset.ignore) && asset.ignore.length > 0 ? ` (ignoring: ${asset.ignore.map((i) => chalk5.yellowBright(i)).join(", ")})` : ""}`);
4328
+ await context.fs.copy(asset, asset.output);
4329
+ }));
4330
+ await this.callHook("build", {
4331
+ environment: context,
4332
+ order: "post"
4333
+ });
4334
+ }
4303
4335
  /**
4304
4336
  * Get the configured environments
4305
4337
  *
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIIYV2EGQ_js = require('./chunk-IIYV2EGQ.js');
3
+ var chunk6BIJYAAM_js = require('./chunk-6BIJYAAM.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
 
6
6
  // src/executors/clean/executor.ts
@@ -11,7 +11,7 @@ async function executorFn(context, api) {
11
11
  };
12
12
  }
13
13
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
14
- var executor = chunkIIYV2EGQ_js.withExecutor("clean", executorFn);
14
+ var executor = chunk6BIJYAAM_js.withExecutor("clean", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-Y3NVJ2RA.mjs';
1
+ import { withExecutor } from './chunk-RINC6MFJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-Y3NVJ2RA.mjs';
1
+ import { withExecutor } from './chunk-RINC6MFJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
package/dist/executors.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkAXGRNHCK_js = require('./chunk-AXGRNHCK.js');
5
- var chunk73TJKRM4_js = require('./chunk-73TJKRM4.js');
6
- var chunk2X6KKBDQ_js = require('./chunk-2X6KKBDQ.js');
7
- var chunkFNCKIEHO_js = require('./chunk-FNCKIEHO.js');
8
- var chunkHDZBAF4F_js = require('./chunk-HDZBAF4F.js');
9
- require('./chunk-IIYV2EGQ.js');
4
+ var chunkIPCWDRHB_js = require('./chunk-IPCWDRHB.js');
5
+ var chunk2I2COQXO_js = require('./chunk-2I2COQXO.js');
6
+ var chunk533WMZH3_js = require('./chunk-533WMZH3.js');
7
+ var chunkSC4TK6EQ_js = require('./chunk-SC4TK6EQ.js');
8
+ var chunkRHBHSB3N_js = require('./chunk-RHBHSB3N.js');
9
+ require('./chunk-6BIJYAAM.js');
10
10
  require('./chunk-DQI2I5KK.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
@@ -14,21 +14,21 @@ require('./chunk-SHUYVCID.js');
14
14
 
15
15
  Object.defineProperty(exports, "lint", {
16
16
  enumerable: true,
17
- get: function () { return chunkAXGRNHCK_js.executor_default; }
17
+ get: function () { return chunkIPCWDRHB_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "prepare", {
20
20
  enumerable: true,
21
- get: function () { return chunk73TJKRM4_js.executor_default; }
21
+ get: function () { return chunk2I2COQXO_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "build", {
24
24
  enumerable: true,
25
- get: function () { return chunk2X6KKBDQ_js.executor_default; }
25
+ get: function () { return chunk533WMZH3_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "clean", {
28
28
  enumerable: true,
29
- get: function () { return chunkFNCKIEHO_js.executor_default; }
29
+ get: function () { return chunkSC4TK6EQ_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "docs", {
32
32
  enumerable: true,
33
- get: function () { return chunkHDZBAF4F_js.executor_default; }
33
+ get: function () { return chunkRHBHSB3N_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-XF2ZF52T.mjs';
3
- export { executor_default as prepare } from './chunk-3ZZUXF6K.mjs';
4
- export { executor_default as build } from './chunk-VYGD742V.mjs';
5
- export { executor_default as clean } from './chunk-XUWMCW4V.mjs';
6
- export { executor_default as docs } from './chunk-ZDQJ5X22.mjs';
7
- import './chunk-Y3NVJ2RA.mjs';
2
+ export { executor_default as lint } from './chunk-NTS4NV36.mjs';
3
+ export { executor_default as prepare } from './chunk-XNSEB5AI.mjs';
4
+ export { executor_default as build } from './chunk-WCPUUN4O.mjs';
5
+ export { executor_default as clean } from './chunk-AITHWYXX.mjs';
6
+ export { executor_default as docs } from './chunk-CZ5MSBO3.mjs';
7
+ import './chunk-RINC6MFJ.mjs';
8
8
  import './chunk-OVX2CEXQ.mjs';
9
9
  import './chunk-O6YSETKJ.mjs';
package/dist/index.js CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  var chunkDNMCZOZX_js = require('./chunk-DNMCZOZX.js');
4
4
  require('./chunk-XO62WWX4.js');
5
- var chunkAXGRNHCK_js = require('./chunk-AXGRNHCK.js');
6
- var chunk73TJKRM4_js = require('./chunk-73TJKRM4.js');
7
- var chunk2X6KKBDQ_js = require('./chunk-2X6KKBDQ.js');
8
- var chunkFNCKIEHO_js = require('./chunk-FNCKIEHO.js');
9
- var chunkHDZBAF4F_js = require('./chunk-HDZBAF4F.js');
5
+ var chunkIPCWDRHB_js = require('./chunk-IPCWDRHB.js');
6
+ var chunk2I2COQXO_js = require('./chunk-2I2COQXO.js');
7
+ var chunk533WMZH3_js = require('./chunk-533WMZH3.js');
8
+ var chunkSC4TK6EQ_js = require('./chunk-SC4TK6EQ.js');
9
+ var chunkRHBHSB3N_js = require('./chunk-RHBHSB3N.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-IIYV2EGQ.js');
12
+ require('./chunk-6BIJYAAM.js');
13
13
  require('./chunk-KBRCV5NY.js');
14
14
  require('./chunk-DQI2I5KK.js');
15
15
  require('./chunk-IQVSZEQ6.js');
@@ -23,23 +23,23 @@ Object.defineProperty(exports, "createNodesV2", {
23
23
  });
24
24
  Object.defineProperty(exports, "lint", {
25
25
  enumerable: true,
26
- get: function () { return chunkAXGRNHCK_js.executor_default; }
26
+ get: function () { return chunkIPCWDRHB_js.executor_default; }
27
27
  });
28
28
  Object.defineProperty(exports, "prepare", {
29
29
  enumerable: true,
30
- get: function () { return chunk73TJKRM4_js.executor_default; }
30
+ get: function () { return chunk2I2COQXO_js.executor_default; }
31
31
  });
32
32
  Object.defineProperty(exports, "build", {
33
33
  enumerable: true,
34
- get: function () { return chunk2X6KKBDQ_js.executor_default; }
34
+ get: function () { return chunk533WMZH3_js.executor_default; }
35
35
  });
36
36
  Object.defineProperty(exports, "clean", {
37
37
  enumerable: true,
38
- get: function () { return chunkFNCKIEHO_js.executor_default; }
38
+ get: function () { return chunkSC4TK6EQ_js.executor_default; }
39
39
  });
40
40
  Object.defineProperty(exports, "docs", {
41
41
  enumerable: true,
42
- get: function () { return chunkHDZBAF4F_js.executor_default; }
42
+ get: function () { return chunkRHBHSB3N_js.executor_default; }
43
43
  });
44
44
  Object.defineProperty(exports, "sync", {
45
45
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,13 +1,13 @@
1
1
  export { createNodesV2 } from './chunk-2SK7GXYX.mjs';
2
2
  import './chunk-UV4HQO3Y.mjs';
3
- export { executor_default as lint } from './chunk-XF2ZF52T.mjs';
4
- export { executor_default as prepare } from './chunk-3ZZUXF6K.mjs';
5
- export { executor_default as build } from './chunk-VYGD742V.mjs';
6
- export { executor_default as clean } from './chunk-XUWMCW4V.mjs';
7
- export { executor_default as docs } from './chunk-ZDQJ5X22.mjs';
3
+ export { executor_default as lint } from './chunk-NTS4NV36.mjs';
4
+ export { executor_default as prepare } from './chunk-XNSEB5AI.mjs';
5
+ export { executor_default as build } from './chunk-WCPUUN4O.mjs';
6
+ export { executor_default as clean } from './chunk-AITHWYXX.mjs';
7
+ export { executor_default as docs } from './chunk-CZ5MSBO3.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-Y3NVJ2RA.mjs';
10
+ import './chunk-RINC6MFJ.mjs';
11
11
  import './chunk-HJZ2I6NE.mjs';
12
12
  import './chunk-OVX2CEXQ.mjs';
13
13
  import './chunk-IC47MFKB.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIIYV2EGQ_js = require('../../chunk-IIYV2EGQ.js');
3
+ var chunk6BIJYAAM_js = require('../../chunk-6BIJYAAM.js');
4
4
  require('../../chunk-DQI2I5KK.js');
5
5
  require('../../chunk-SHUYVCID.js');
6
6
 
@@ -8,5 +8,5 @@ require('../../chunk-SHUYVCID.js');
8
8
 
9
9
  Object.defineProperty(exports, "withExecutor", {
10
10
  enumerable: true,
11
- get: function () { return chunkIIYV2EGQ_js.withExecutor; }
11
+ get: function () { return chunk6BIJYAAM_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-Y3NVJ2RA.mjs';
1
+ export { withExecutor } from '../../chunk-RINC6MFJ.mjs';
2
2
  import '../../chunk-OVX2CEXQ.mjs';
3
3
  import '../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunk2X6KKBDQ_js = require('../../../chunk-2X6KKBDQ.js');
6
- require('../../../chunk-IIYV2EGQ.js');
5
+ var chunk533WMZH3_js = require('../../../chunk-533WMZH3.js');
6
+ require('../../../chunk-6BIJYAAM.js');
7
7
  require('../../../chunk-DQI2I5KK.js');
8
8
  require('../../../chunk-SHUYVCID.js');
9
9
 
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
11
11
 
12
12
  Object.defineProperty(exports, "default", {
13
13
  enumerable: true,
14
- get: function () { return chunk2X6KKBDQ_js.executor_default; }
14
+ get: function () { return chunk533WMZH3_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk2X6KKBDQ_js.executorFn; }
18
+ get: function () { return chunk533WMZH3_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-VYGD742V.mjs';
2
- import '../../../chunk-Y3NVJ2RA.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-WCPUUN4O.mjs';
2
+ import '../../../chunk-RINC6MFJ.mjs';
3
3
  import '../../../chunk-OVX2CEXQ.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunkFNCKIEHO_js = require('../../../chunk-FNCKIEHO.js');
6
- require('../../../chunk-IIYV2EGQ.js');
5
+ var chunkSC4TK6EQ_js = require('../../../chunk-SC4TK6EQ.js');
6
+ require('../../../chunk-6BIJYAAM.js');
7
7
  require('../../../chunk-DQI2I5KK.js');
8
8
  require('../../../chunk-SHUYVCID.js');
9
9
 
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
11
11
 
12
12
  Object.defineProperty(exports, "default", {
13
13
  enumerable: true,
14
- get: function () { return chunkFNCKIEHO_js.executor_default; }
14
+ get: function () { return chunkSC4TK6EQ_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkFNCKIEHO_js.executorFn; }
18
+ get: function () { return chunkSC4TK6EQ_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-XUWMCW4V.mjs';
2
- import '../../../chunk-Y3NVJ2RA.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-AITHWYXX.mjs';
2
+ import '../../../chunk-RINC6MFJ.mjs';
3
3
  import '../../../chunk-OVX2CEXQ.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunkHDZBAF4F_js = require('../../../chunk-HDZBAF4F.js');
6
- require('../../../chunk-IIYV2EGQ.js');
5
+ var chunkRHBHSB3N_js = require('../../../chunk-RHBHSB3N.js');
6
+ require('../../../chunk-6BIJYAAM.js');
7
7
  require('../../../chunk-DQI2I5KK.js');
8
8
  require('../../../chunk-SHUYVCID.js');
9
9
 
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
11
11
 
12
12
  Object.defineProperty(exports, "default", {
13
13
  enumerable: true,
14
- get: function () { return chunkHDZBAF4F_js.executor_default; }
14
+ get: function () { return chunkRHBHSB3N_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkHDZBAF4F_js.executorFn; }
18
+ get: function () { return chunkRHBHSB3N_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-ZDQJ5X22.mjs';
2
- import '../../../chunk-Y3NVJ2RA.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-CZ5MSBO3.mjs';
2
+ import '../../../chunk-RINC6MFJ.mjs';
3
3
  import '../../../chunk-OVX2CEXQ.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunkAXGRNHCK_js = require('../../../chunk-AXGRNHCK.js');
6
- require('../../../chunk-IIYV2EGQ.js');
5
+ var chunkIPCWDRHB_js = require('../../../chunk-IPCWDRHB.js');
6
+ require('../../../chunk-6BIJYAAM.js');
7
7
  require('../../../chunk-DQI2I5KK.js');
8
8
  require('../../../chunk-SHUYVCID.js');
9
9
 
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
11
11
 
12
12
  Object.defineProperty(exports, "default", {
13
13
  enumerable: true,
14
- get: function () { return chunkAXGRNHCK_js.executor_default; }
14
+ get: function () { return chunkIPCWDRHB_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkAXGRNHCK_js.executorFn; }
18
+ get: function () { return chunkIPCWDRHB_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-XF2ZF52T.mjs';
2
- import '../../../chunk-Y3NVJ2RA.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-NTS4NV36.mjs';
2
+ import '../../../chunk-RINC6MFJ.mjs';
3
3
  import '../../../chunk-OVX2CEXQ.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunk73TJKRM4_js = require('../../../chunk-73TJKRM4.js');
6
- require('../../../chunk-IIYV2EGQ.js');
5
+ var chunk2I2COQXO_js = require('../../../chunk-2I2COQXO.js');
6
+ require('../../../chunk-6BIJYAAM.js');
7
7
  require('../../../chunk-DQI2I5KK.js');
8
8
  require('../../../chunk-SHUYVCID.js');
9
9
 
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
11
11
 
12
12
  Object.defineProperty(exports, "default", {
13
13
  enumerable: true,
14
- get: function () { return chunk73TJKRM4_js.executor_default; }
14
+ get: function () { return chunk2I2COQXO_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk73TJKRM4_js.executorFn; }
18
+ get: function () { return chunk2I2COQXO_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-3ZZUXF6K.mjs';
2
- import '../../../chunk-Y3NVJ2RA.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-XNSEB5AI.mjs';
2
+ import '../../../chunk-RINC6MFJ.mjs';
3
3
  import '../../../chunk-OVX2CEXQ.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.10.62",
3
+ "version": "0.10.63",
4
4
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -181,13 +181,13 @@
181
181
  },
182
182
  "typings": "dist/index.d.ts",
183
183
  "dependencies": {
184
- "@nx/devkit": "^22.1.3",
185
- "@storm-software/build-tools": "^0.158.63",
186
- "@storm-software/config": "^1.134.63",
187
- "@storm-software/config-tools": "^1.188.63",
188
- "@storm-software/esbuild": "^0.53.63",
189
- "@storm-software/unbuild": "^0.57.63",
190
- "@storm-software/workspace-tools": "^1.294.7",
184
+ "@nx/devkit": "^22.2.0",
185
+ "@storm-software/build-tools": "^0.158.65",
186
+ "@storm-software/config": "^1.134.65",
187
+ "@storm-software/config-tools": "^1.188.65",
188
+ "@storm-software/esbuild": "^0.53.65",
189
+ "@storm-software/unbuild": "^0.57.65",
190
+ "@storm-software/workspace-tools": "^1.294.9",
191
191
  "@stryke/fs": "^0.33.20",
192
192
  "@stryke/hash": "^0.12.26",
193
193
  "@stryke/path": "^0.22.11",
@@ -195,13 +195,13 @@
195
195
  "@stryke/type-checks": "^0.5.9",
196
196
  "defu": "^6.1.4",
197
197
  "jiti": "^2.6.1",
198
- "nx": "^22.1.3",
199
- "powerlines": "^0.30.13"
198
+ "nx": "^22.2.0",
199
+ "powerlines": "^0.31.0"
200
200
  },
201
201
  "devDependencies": {
202
- "@nx/workspace": "^22.1.3",
203
- "@storm-software/testing-tools": "^1.119.62",
204
- "@types/node": "^24.10.1",
202
+ "@nx/workspace": "^22.2.0",
203
+ "@storm-software/testing-tools": "^1.119.64",
204
+ "@types/node": "^24.10.2",
205
205
  "eslint-flat-config-utils": "^2.1.4",
206
206
  "jsonc-eslint-parser": "^2.4.2",
207
207
  "tsup": "8.4.0",
@@ -210,5 +210,5 @@
210
210
  "publishConfig": { "access": "public" },
211
211
  "executors": "./executors.json",
212
212
  "generators": "./generators.json",
213
- "gitHead": "56e0428b32d445614bde031bbd30c077b1432641"
213
+ "gitHead": "2a4c29a361c5702474c60ee5f06a3e4e87d23c35"
214
214
  }