@powerlines/nx 0.10.44 → 0.10.46

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 +12 -0
  2. package/dist/{chunk-OZS7TX5H.js → chunk-3BM4F7DF.js} +2 -2
  3. package/dist/{chunk-ZEFI36VN.js → chunk-6MIGHWXS.js} +2 -2
  4. package/dist/{chunk-ZWQNKIN3.js → chunk-B73RQF3Y.js} +51 -16
  5. package/dist/{chunk-Q5C6LQA5.js → chunk-BA3VSEVV.js} +2 -2
  6. package/dist/{chunk-AAEFNMAS.mjs → chunk-BTBIUGND.mjs} +1 -1
  7. package/dist/{chunk-V4HJVR2F.js → chunk-EUCVGGMW.js} +2 -2
  8. package/dist/{chunk-ATDCZ42E.js → chunk-FKZWCQXX.js} +2 -2
  9. package/dist/{chunk-UA6N4XMT.mjs → chunk-N4LRSAGW.mjs} +1 -1
  10. package/dist/{chunk-2VIL6YJW.mjs → chunk-PE72KJBW.mjs} +1 -1
  11. package/dist/{chunk-2LWZHRAL.mjs → chunk-QFQYFQT4.mjs} +1 -1
  12. package/dist/{chunk-H47ZG3KM.mjs → chunk-R6ECHVU4.mjs} +51 -16
  13. package/dist/{chunk-JZKQJUW6.mjs → chunk-WDCMFWCL.mjs} +1 -1
  14. package/dist/executors.js +14 -14
  15. package/dist/executors.mjs +6 -6
  16. package/dist/index.js +14 -14
  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 +13 -13
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.10.46](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.46) (11/28/2025)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.27.0**
10
+
11
+ ## [0.10.45](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.45) (11/28/2025)
12
+
13
+ ### Updated Dependencies
14
+
15
+ - Updated **powerlines** to **v0.26.2**
16
+
5
17
  ## [0.10.44](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.44) (11/27/2025)
6
18
 
7
19
  ### Updated Dependencies
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkZWQNKIN3_js = require('./chunk-ZWQNKIN3.js');
3
+ var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkZWQNKIN3_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkB73RQF3Y_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 chunkZWQNKIN3_js = require('./chunk-ZWQNKIN3.js');
3
+ var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkZWQNKIN3_js.withExecutor("lint", executorFn);
14
+ var executor = chunkB73RQF3Y_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -2143,9 +2143,14 @@ var VirtualFileSystem = class _VirtualFileSystem {
2143
2143
  if (isType.isAbsolutePath(id)) {
2144
2144
  return id;
2145
2145
  }
2146
+ const resolverCacheKey = murmurhash.murmurhash({
2147
+ id: this.#normalizeId(id),
2148
+ importer,
2149
+ options
2150
+ });
2146
2151
  let result;
2147
2152
  if (!this.#context.config.skipCache) {
2148
- result = this.resolverCache.get(this.#normalizeId(id));
2153
+ result = this.resolverCache.get(resolverCacheKey);
2149
2154
  if (result) {
2150
2155
  return result;
2151
2156
  }
@@ -2171,6 +2176,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
2171
2176
  }
2172
2177
  try {
2173
2178
  result = await resolve.resolve(id, {
2179
+ ...options,
2174
2180
  paths
2175
2181
  });
2176
2182
  } catch {
@@ -2179,7 +2185,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
2179
2185
  if (result) {
2180
2186
  result = correctPath.toAbsolutePath(append.appendPath(result, this.#context.config.projectRoot), this.#context.workspaceConfig.workspaceRoot);
2181
2187
  if (!this.#context.config.skipCache) {
2182
- this.resolverCache.set(this.#normalizeId(id), result);
2188
+ this.resolverCache.set(resolverCacheKey, result);
2183
2189
  }
2184
2190
  }
2185
2191
  return result;
@@ -2600,9 +2606,26 @@ var PowerlinesContext = class _PowerlinesContext {
2600
2606
  * @param options - Additional resolution options.
2601
2607
  * @returns A promise that resolves to the resolved module path.
2602
2608
  */
2603
- async resolveId(id, importer, options = {}) {
2604
- if (this.fs.isVirtual(id)) {
2605
- const result = await this.fs.resolve(id, importer, options);
2609
+ async resolve(id, importer, options = {}) {
2610
+ let moduleId = id;
2611
+ if (this.config.build.alias) {
2612
+ if (Array.isArray(this.config.build.alias)) {
2613
+ const alias = this.config.build.alias.find((a) => bundleRequire.match(moduleId, [
2614
+ a.find
2615
+ ]));
2616
+ if (alias) {
2617
+ moduleId = alias.replacement;
2618
+ }
2619
+ } else if (isSetObject.isSetObject(this.config.build.alias) && this.config.build.alias[id]) {
2620
+ moduleId = this.config.build.alias[id];
2621
+ }
2622
+ }
2623
+ if (this.fs.isVirtual(moduleId)) {
2624
+ const result = await this.fs.resolve(moduleId, importer, {
2625
+ conditions: this.config.build.conditions,
2626
+ extensions: this.config.build.extensions,
2627
+ ...options
2628
+ });
2606
2629
  if (!result) {
2607
2630
  return void 0;
2608
2631
  }
@@ -2612,28 +2635,28 @@ var PowerlinesContext = class _PowerlinesContext {
2612
2635
  };
2613
2636
  }
2614
2637
  if (this.config.build.skipNodeModulesBundle) {
2615
- if (bundleRequire.match(id, this.#resolvePatterns) || bundleRequire.match(id, this.config.build.noExternal)) {
2638
+ if (bundleRequire.match(moduleId, this.#resolvePatterns) || bundleRequire.match(moduleId, this.config.build.noExternal)) {
2616
2639
  return void 0;
2617
2640
  }
2618
- if (bundleRequire.match(id, this.config.build.external) || id.startsWith("node:")) {
2641
+ if (bundleRequire.match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
2619
2642
  return {
2620
- id,
2643
+ id: moduleId,
2621
2644
  external: true
2622
2645
  };
2623
2646
  }
2624
- if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(id)) {
2647
+ if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(moduleId)) {
2625
2648
  return {
2626
- id,
2649
+ id: moduleId,
2627
2650
  external: true
2628
2651
  };
2629
2652
  }
2630
2653
  } else {
2631
- if (bundleRequire.match(id, this.config.build.noExternal)) {
2654
+ if (bundleRequire.match(moduleId, this.config.build.noExternal)) {
2632
2655
  return void 0;
2633
2656
  }
2634
- if (bundleRequire.match(id, this.config.build.external) || id.startsWith("node:")) {
2657
+ if (bundleRequire.match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
2635
2658
  return {
2636
- id,
2659
+ id: moduleId,
2637
2660
  external: true
2638
2661
  };
2639
2662
  }
@@ -2963,6 +2986,12 @@ var PowerlinesContext = class _PowerlinesContext {
2963
2986
  this.config.name = this.config.name.split("/").filter(Boolean)[1];
2964
2987
  }
2965
2988
  this.config.title ??= titleCase.titleCase(this.config.name);
2989
+ if (this.config.userConfig.build?.external) {
2990
+ this.config.userConfig.build.external = getUnique.getUnique(this.config.userConfig.build.external);
2991
+ }
2992
+ if (this.config.userConfig.build?.noExternal) {
2993
+ this.config.userConfig.build.noExternal = getUnique.getUnique(this.config.userConfig.build.noExternal);
2994
+ }
2966
2995
  if (this.config.build.external) {
2967
2996
  this.config.build.external = getUnique.getUnique(this.config.build.external);
2968
2997
  }
@@ -3053,9 +3082,11 @@ function createPluginContext(plugin, environment) {
3053
3082
  }, "normalizeMessage");
3054
3083
  const log = environment.extendLog(plugin.name);
3055
3084
  const callHookFn = /* @__PURE__ */ chunkSHUYVCID_js.__name(async (hook, options, ...args) => {
3056
- return callHook(environment, hook, {
3085
+ return environment.$$internal.api.callHook(hook, {
3057
3086
  sequential: true,
3058
- ...options
3087
+ result: "merge",
3088
+ ...options,
3089
+ environment
3059
3090
  }, ...args);
3060
3091
  }, "callHookFn");
3061
3092
  return new Proxy({}, {
@@ -3438,7 +3469,11 @@ var PowerlinesAPI = class _PowerlinesAPI {
3438
3469
  this.#context = context;
3439
3470
  }
3440
3471
  /**
3441
- * Initialize the Powerlines API
3472
+ * Initialize a Powerlines API instance
3473
+ *
3474
+ * @param workspaceRoot - The directory of the underlying workspace the Powerlines project exists in
3475
+ * @param config - An object containing the configuration required to run Powerlines tasks.
3476
+ * @returns A new instance of the Powerlines API
3442
3477
  */
3443
3478
  static async from(workspaceRoot, config) {
3444
3479
  const api = new _PowerlinesAPI(await PowerlinesAPIContext.from(workspaceRoot, config));
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkZWQNKIN3_js = require('./chunk-ZWQNKIN3.js');
3
+ var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkZWQNKIN3_js.withExecutor("clean", executorFn);
14
+ var executor = chunkB73RQF3Y_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-H47ZG3KM.mjs';
1
+ import { withExecutor } from './chunk-R6ECHVU4.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 chunkZWQNKIN3_js = require('./chunk-ZWQNKIN3.js');
3
+ var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkZWQNKIN3_js.withExecutor("build", executorFn);
22
+ var executor = chunkB73RQF3Y_js.withExecutor("build", 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 chunkZWQNKIN3_js = require('./chunk-ZWQNKIN3.js');
3
+ var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkZWQNKIN3_js.withExecutor("docs", executorFn);
14
+ var executor = chunkB73RQF3Y_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-H47ZG3KM.mjs';
1
+ import { withExecutor } from './chunk-R6ECHVU4.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-H47ZG3KM.mjs';
1
+ import { withExecutor } from './chunk-R6ECHVU4.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-H47ZG3KM.mjs';
1
+ import { withExecutor } from './chunk-R6ECHVU4.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -2114,9 +2114,14 @@ var VirtualFileSystem = class _VirtualFileSystem {
2114
2114
  if (isAbsolutePath(id)) {
2115
2115
  return id;
2116
2116
  }
2117
+ const resolverCacheKey = murmurhash({
2118
+ id: this.#normalizeId(id),
2119
+ importer,
2120
+ options
2121
+ });
2117
2122
  let result;
2118
2123
  if (!this.#context.config.skipCache) {
2119
- result = this.resolverCache.get(this.#normalizeId(id));
2124
+ result = this.resolverCache.get(resolverCacheKey);
2120
2125
  if (result) {
2121
2126
  return result;
2122
2127
  }
@@ -2142,6 +2147,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
2142
2147
  }
2143
2148
  try {
2144
2149
  result = await resolve$1(id, {
2150
+ ...options,
2145
2151
  paths
2146
2152
  });
2147
2153
  } catch {
@@ -2150,7 +2156,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
2150
2156
  if (result) {
2151
2157
  result = toAbsolutePath(appendPath(result, this.#context.config.projectRoot), this.#context.workspaceConfig.workspaceRoot);
2152
2158
  if (!this.#context.config.skipCache) {
2153
- this.resolverCache.set(this.#normalizeId(id), result);
2159
+ this.resolverCache.set(resolverCacheKey, result);
2154
2160
  }
2155
2161
  }
2156
2162
  return result;
@@ -2571,9 +2577,26 @@ var PowerlinesContext = class _PowerlinesContext {
2571
2577
  * @param options - Additional resolution options.
2572
2578
  * @returns A promise that resolves to the resolved module path.
2573
2579
  */
2574
- async resolveId(id, importer, options = {}) {
2575
- if (this.fs.isVirtual(id)) {
2576
- const result = await this.fs.resolve(id, importer, options);
2580
+ async resolve(id, importer, options = {}) {
2581
+ let moduleId = id;
2582
+ if (this.config.build.alias) {
2583
+ if (Array.isArray(this.config.build.alias)) {
2584
+ const alias = this.config.build.alias.find((a) => match(moduleId, [
2585
+ a.find
2586
+ ]));
2587
+ if (alias) {
2588
+ moduleId = alias.replacement;
2589
+ }
2590
+ } else if (isSetObject(this.config.build.alias) && this.config.build.alias[id]) {
2591
+ moduleId = this.config.build.alias[id];
2592
+ }
2593
+ }
2594
+ if (this.fs.isVirtual(moduleId)) {
2595
+ const result = await this.fs.resolve(moduleId, importer, {
2596
+ conditions: this.config.build.conditions,
2597
+ extensions: this.config.build.extensions,
2598
+ ...options
2599
+ });
2577
2600
  if (!result) {
2578
2601
  return void 0;
2579
2602
  }
@@ -2583,28 +2606,28 @@ var PowerlinesContext = class _PowerlinesContext {
2583
2606
  };
2584
2607
  }
2585
2608
  if (this.config.build.skipNodeModulesBundle) {
2586
- if (match(id, this.#resolvePatterns) || match(id, this.config.build.noExternal)) {
2609
+ if (match(moduleId, this.#resolvePatterns) || match(moduleId, this.config.build.noExternal)) {
2587
2610
  return void 0;
2588
2611
  }
2589
- if (match(id, this.config.build.external) || id.startsWith("node:")) {
2612
+ if (match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
2590
2613
  return {
2591
- id,
2614
+ id: moduleId,
2592
2615
  external: true
2593
2616
  };
2594
2617
  }
2595
- if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(id)) {
2618
+ if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(moduleId)) {
2596
2619
  return {
2597
- id,
2620
+ id: moduleId,
2598
2621
  external: true
2599
2622
  };
2600
2623
  }
2601
2624
  } else {
2602
- if (match(id, this.config.build.noExternal)) {
2625
+ if (match(moduleId, this.config.build.noExternal)) {
2603
2626
  return void 0;
2604
2627
  }
2605
- if (match(id, this.config.build.external) || id.startsWith("node:")) {
2628
+ if (match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
2606
2629
  return {
2607
- id,
2630
+ id: moduleId,
2608
2631
  external: true
2609
2632
  };
2610
2633
  }
@@ -2934,6 +2957,12 @@ var PowerlinesContext = class _PowerlinesContext {
2934
2957
  this.config.name = this.config.name.split("/").filter(Boolean)[1];
2935
2958
  }
2936
2959
  this.config.title ??= titleCase(this.config.name);
2960
+ if (this.config.userConfig.build?.external) {
2961
+ this.config.userConfig.build.external = getUnique(this.config.userConfig.build.external);
2962
+ }
2963
+ if (this.config.userConfig.build?.noExternal) {
2964
+ this.config.userConfig.build.noExternal = getUnique(this.config.userConfig.build.noExternal);
2965
+ }
2937
2966
  if (this.config.build.external) {
2938
2967
  this.config.build.external = getUnique(this.config.build.external);
2939
2968
  }
@@ -3024,9 +3053,11 @@ function createPluginContext(plugin, environment) {
3024
3053
  }, "normalizeMessage");
3025
3054
  const log = environment.extendLog(plugin.name);
3026
3055
  const callHookFn = /* @__PURE__ */ __name(async (hook, options, ...args) => {
3027
- return callHook(environment, hook, {
3056
+ return environment.$$internal.api.callHook(hook, {
3028
3057
  sequential: true,
3029
- ...options
3058
+ result: "merge",
3059
+ ...options,
3060
+ environment
3030
3061
  }, ...args);
3031
3062
  }, "callHookFn");
3032
3063
  return new Proxy({}, {
@@ -3409,7 +3440,11 @@ var PowerlinesAPI = class _PowerlinesAPI {
3409
3440
  this.#context = context;
3410
3441
  }
3411
3442
  /**
3412
- * Initialize the Powerlines API
3443
+ * Initialize a Powerlines API instance
3444
+ *
3445
+ * @param workspaceRoot - The directory of the underlying workspace the Powerlines project exists in
3446
+ * @param config - An object containing the configuration required to run Powerlines tasks.
3447
+ * @returns A new instance of the Powerlines API
3413
3448
  */
3414
3449
  static async from(workspaceRoot, config) {
3415
3450
  const api = new _PowerlinesAPI(await PowerlinesAPIContext.from(workspaceRoot, config));
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-H47ZG3KM.mjs';
1
+ import { withExecutor } from './chunk-R6ECHVU4.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
package/dist/executors.js CHANGED
@@ -1,34 +1,34 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkZEFI36VN_js = require('./chunk-ZEFI36VN.js');
5
- var chunkOZS7TX5H_js = require('./chunk-OZS7TX5H.js');
6
- var chunkV4HJVR2F_js = require('./chunk-V4HJVR2F.js');
7
- var chunkQ5C6LQA5_js = require('./chunk-Q5C6LQA5.js');
8
- var chunkATDCZ42E_js = require('./chunk-ATDCZ42E.js');
9
- require('./chunk-ZWQNKIN3.js');
4
+ var chunkFKZWCQXX_js = require('./chunk-FKZWCQXX.js');
5
+ var chunk6MIGHWXS_js = require('./chunk-6MIGHWXS.js');
6
+ var chunk3BM4F7DF_js = require('./chunk-3BM4F7DF.js');
7
+ var chunkEUCVGGMW_js = require('./chunk-EUCVGGMW.js');
8
+ var chunkBA3VSEVV_js = require('./chunk-BA3VSEVV.js');
9
+ require('./chunk-B73RQF3Y.js');
10
10
  require('./chunk-DQI2I5KK.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
13
13
 
14
14
 
15
+ Object.defineProperty(exports, "docs", {
16
+ enumerable: true,
17
+ get: function () { return chunkFKZWCQXX_js.executor_default; }
18
+ });
15
19
  Object.defineProperty(exports, "lint", {
16
20
  enumerable: true,
17
- get: function () { return chunkZEFI36VN_js.executor_default; }
21
+ get: function () { return chunk6MIGHWXS_js.executor_default; }
18
22
  });
19
23
  Object.defineProperty(exports, "prepare", {
20
24
  enumerable: true,
21
- get: function () { return chunkOZS7TX5H_js.executor_default; }
25
+ get: function () { return chunk3BM4F7DF_js.executor_default; }
22
26
  });
23
27
  Object.defineProperty(exports, "build", {
24
28
  enumerable: true,
25
- get: function () { return chunkV4HJVR2F_js.executor_default; }
29
+ get: function () { return chunkEUCVGGMW_js.executor_default; }
26
30
  });
27
31
  Object.defineProperty(exports, "clean", {
28
32
  enumerable: true,
29
- get: function () { return chunkQ5C6LQA5_js.executor_default; }
30
- });
31
- Object.defineProperty(exports, "docs", {
32
- enumerable: true,
33
- get: function () { return chunkATDCZ42E_js.executor_default; }
33
+ get: function () { return chunkBA3VSEVV_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-2LWZHRAL.mjs';
3
- export { executor_default as prepare } from './chunk-2VIL6YJW.mjs';
4
- export { executor_default as build } from './chunk-UA6N4XMT.mjs';
5
- export { executor_default as clean } from './chunk-JZKQJUW6.mjs';
6
- export { executor_default as docs } from './chunk-AAEFNMAS.mjs';
7
- import './chunk-H47ZG3KM.mjs';
2
+ export { executor_default as docs } from './chunk-BTBIUGND.mjs';
3
+ export { executor_default as lint } from './chunk-QFQYFQT4.mjs';
4
+ export { executor_default as prepare } from './chunk-PE72KJBW.mjs';
5
+ export { executor_default as build } from './chunk-N4LRSAGW.mjs';
6
+ export { executor_default as clean } from './chunk-WDCMFWCL.mjs';
7
+ import './chunk-R6ECHVU4.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 chunkZEFI36VN_js = require('./chunk-ZEFI36VN.js');
6
- var chunkOZS7TX5H_js = require('./chunk-OZS7TX5H.js');
7
- var chunkV4HJVR2F_js = require('./chunk-V4HJVR2F.js');
8
- var chunkQ5C6LQA5_js = require('./chunk-Q5C6LQA5.js');
9
- var chunkATDCZ42E_js = require('./chunk-ATDCZ42E.js');
5
+ var chunkFKZWCQXX_js = require('./chunk-FKZWCQXX.js');
6
+ var chunk6MIGHWXS_js = require('./chunk-6MIGHWXS.js');
7
+ var chunk3BM4F7DF_js = require('./chunk-3BM4F7DF.js');
8
+ var chunkEUCVGGMW_js = require('./chunk-EUCVGGMW.js');
9
+ var chunkBA3VSEVV_js = require('./chunk-BA3VSEVV.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-ZWQNKIN3.js');
12
+ require('./chunk-B73RQF3Y.js');
13
13
  require('./chunk-KBRCV5NY.js');
14
14
  require('./chunk-DQI2I5KK.js');
15
15
  require('./chunk-IQVSZEQ6.js');
@@ -21,25 +21,25 @@ Object.defineProperty(exports, "createNodesV2", {
21
21
  enumerable: true,
22
22
  get: function () { return chunkDNMCZOZX_js.createNodesV2; }
23
23
  });
24
+ Object.defineProperty(exports, "docs", {
25
+ enumerable: true,
26
+ get: function () { return chunkFKZWCQXX_js.executor_default; }
27
+ });
24
28
  Object.defineProperty(exports, "lint", {
25
29
  enumerable: true,
26
- get: function () { return chunkZEFI36VN_js.executor_default; }
30
+ get: function () { return chunk6MIGHWXS_js.executor_default; }
27
31
  });
28
32
  Object.defineProperty(exports, "prepare", {
29
33
  enumerable: true,
30
- get: function () { return chunkOZS7TX5H_js.executor_default; }
34
+ get: function () { return chunk3BM4F7DF_js.executor_default; }
31
35
  });
32
36
  Object.defineProperty(exports, "build", {
33
37
  enumerable: true,
34
- get: function () { return chunkV4HJVR2F_js.executor_default; }
38
+ get: function () { return chunkEUCVGGMW_js.executor_default; }
35
39
  });
36
40
  Object.defineProperty(exports, "clean", {
37
41
  enumerable: true,
38
- get: function () { return chunkQ5C6LQA5_js.executor_default; }
39
- });
40
- Object.defineProperty(exports, "docs", {
41
- enumerable: true,
42
- get: function () { return chunkATDCZ42E_js.executor_default; }
42
+ get: function () { return chunkBA3VSEVV_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-2LWZHRAL.mjs';
4
- export { executor_default as prepare } from './chunk-2VIL6YJW.mjs';
5
- export { executor_default as build } from './chunk-UA6N4XMT.mjs';
6
- export { executor_default as clean } from './chunk-JZKQJUW6.mjs';
7
- export { executor_default as docs } from './chunk-AAEFNMAS.mjs';
3
+ export { executor_default as docs } from './chunk-BTBIUGND.mjs';
4
+ export { executor_default as lint } from './chunk-QFQYFQT4.mjs';
5
+ export { executor_default as prepare } from './chunk-PE72KJBW.mjs';
6
+ export { executor_default as build } from './chunk-N4LRSAGW.mjs';
7
+ export { executor_default as clean } from './chunk-WDCMFWCL.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-H47ZG3KM.mjs';
10
+ import './chunk-R6ECHVU4.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 chunkZWQNKIN3_js = require('../../chunk-ZWQNKIN3.js');
3
+ var chunkB73RQF3Y_js = require('../../chunk-B73RQF3Y.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 chunkZWQNKIN3_js.withExecutor; }
11
+ get: function () { return chunkB73RQF3Y_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-H47ZG3KM.mjs';
1
+ export { withExecutor } from '../../chunk-R6ECHVU4.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 chunkV4HJVR2F_js = require('../../../chunk-V4HJVR2F.js');
6
- require('../../../chunk-ZWQNKIN3.js');
5
+ var chunkEUCVGGMW_js = require('../../../chunk-EUCVGGMW.js');
6
+ require('../../../chunk-B73RQF3Y.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 chunkV4HJVR2F_js.executor_default; }
14
+ get: function () { return chunkEUCVGGMW_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkV4HJVR2F_js.executorFn; }
18
+ get: function () { return chunkEUCVGGMW_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-UA6N4XMT.mjs';
2
- import '../../../chunk-H47ZG3KM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-N4LRSAGW.mjs';
2
+ import '../../../chunk-R6ECHVU4.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 chunkQ5C6LQA5_js = require('../../../chunk-Q5C6LQA5.js');
6
- require('../../../chunk-ZWQNKIN3.js');
5
+ var chunkBA3VSEVV_js = require('../../../chunk-BA3VSEVV.js');
6
+ require('../../../chunk-B73RQF3Y.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 chunkQ5C6LQA5_js.executor_default; }
14
+ get: function () { return chunkBA3VSEVV_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkQ5C6LQA5_js.executorFn; }
18
+ get: function () { return chunkBA3VSEVV_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-JZKQJUW6.mjs';
2
- import '../../../chunk-H47ZG3KM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-WDCMFWCL.mjs';
2
+ import '../../../chunk-R6ECHVU4.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 chunkATDCZ42E_js = require('../../../chunk-ATDCZ42E.js');
6
- require('../../../chunk-ZWQNKIN3.js');
5
+ var chunkFKZWCQXX_js = require('../../../chunk-FKZWCQXX.js');
6
+ require('../../../chunk-B73RQF3Y.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 chunkATDCZ42E_js.executor_default; }
14
+ get: function () { return chunkFKZWCQXX_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkATDCZ42E_js.executorFn; }
18
+ get: function () { return chunkFKZWCQXX_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-AAEFNMAS.mjs';
2
- import '../../../chunk-H47ZG3KM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-BTBIUGND.mjs';
2
+ import '../../../chunk-R6ECHVU4.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 chunkZEFI36VN_js = require('../../../chunk-ZEFI36VN.js');
6
- require('../../../chunk-ZWQNKIN3.js');
5
+ var chunk6MIGHWXS_js = require('../../../chunk-6MIGHWXS.js');
6
+ require('../../../chunk-B73RQF3Y.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 chunkZEFI36VN_js.executor_default; }
14
+ get: function () { return chunk6MIGHWXS_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkZEFI36VN_js.executorFn; }
18
+ get: function () { return chunk6MIGHWXS_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-2LWZHRAL.mjs';
2
- import '../../../chunk-H47ZG3KM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-QFQYFQT4.mjs';
2
+ import '../../../chunk-R6ECHVU4.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 chunkOZS7TX5H_js = require('../../../chunk-OZS7TX5H.js');
6
- require('../../../chunk-ZWQNKIN3.js');
5
+ var chunk3BM4F7DF_js = require('../../../chunk-3BM4F7DF.js');
6
+ require('../../../chunk-B73RQF3Y.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 chunkOZS7TX5H_js.executor_default; }
14
+ get: function () { return chunk3BM4F7DF_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkOZS7TX5H_js.executorFn; }
18
+ get: function () { return chunk3BM4F7DF_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-2VIL6YJW.mjs';
2
- import '../../../chunk-H47ZG3KM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-PE72KJBW.mjs';
2
+ import '../../../chunk-R6ECHVU4.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.44",
3
+ "version": "0.10.46",
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.2",
185
- "@storm-software/build-tools": "^0.158.49",
186
- "@storm-software/config": "^1.134.49",
187
- "@storm-software/config-tools": "^1.188.49",
188
- "@storm-software/esbuild": "^0.53.49",
189
- "@storm-software/unbuild": "^0.57.49",
190
- "@storm-software/workspace-tools": "^1.293.19",
184
+ "@nx/devkit": "^22.1.3",
185
+ "@storm-software/build-tools": "^0.158.50",
186
+ "@storm-software/config": "^1.134.50",
187
+ "@storm-software/config-tools": "^1.188.50",
188
+ "@storm-software/esbuild": "^0.53.50",
189
+ "@storm-software/unbuild": "^0.57.50",
190
+ "@storm-software/workspace-tools": "^1.293.20",
191
191
  "@stryke/fs": "^0.33.4",
192
192
  "@stryke/hash": "^0.12.10",
193
193
  "@stryke/path": "^0.21.2",
@@ -195,12 +195,12 @@
195
195
  "@stryke/type-checks": "^0.3.18",
196
196
  "defu": "^6.1.4",
197
197
  "jiti": "^2.6.1",
198
- "nx": "^22.1.2",
199
- "powerlines": "^0.26.1"
198
+ "nx": "^22.1.3",
199
+ "powerlines": "^0.27.0"
200
200
  },
201
201
  "devDependencies": {
202
- "@nx/workspace": "^22.1.2",
203
- "@storm-software/testing-tools": "^1.119.49",
202
+ "@nx/workspace": "^22.1.3",
203
+ "@storm-software/testing-tools": "^1.119.50",
204
204
  "@types/node": "^24.10.1",
205
205
  "eslint-flat-config-utils": "^2.1.4",
206
206
  "jsonc-eslint-parser": "^2.4.1",
@@ -210,5 +210,5 @@
210
210
  "publishConfig": { "access": "public" },
211
211
  "executors": "./executors.json",
212
212
  "generators": "./generators.json",
213
- "gitHead": "091646e240baefe4692003e7ea76e5e337d1772e"
213
+ "gitHead": "bbbbe4fd720918401d58e4553d93ff2018d78e6a"
214
214
  }