@powerlines/nx 0.11.75 → 0.11.76

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 +6 -0
  2. package/dist/{chunk-WCMC3I4Y.mjs → chunk-7PSQQKAZ.mjs} +1 -1
  3. package/dist/{chunk-BZ6QEPPN.mjs → chunk-C5EKHBNU.mjs} +10 -7
  4. package/dist/{chunk-5IDX7ETF.js → chunk-FXKDZBPH.js} +2 -2
  5. package/dist/{chunk-HGX3OE6S.js → chunk-IUT2GTPA.js} +2 -2
  6. package/dist/{chunk-AAFVC246.mjs → chunk-KV5ONCWH.mjs} +1 -1
  7. package/dist/{chunk-IZMEFYEM.js → chunk-PJVFSZBV.js} +10 -7
  8. package/dist/{chunk-YIOXR5LP.js → chunk-R4YRVL5L.js} +2 -2
  9. package/dist/{chunk-QT7DODSL.mjs → chunk-RRTDRUGA.mjs} +1 -1
  10. package/dist/{chunk-GEWS52QV.mjs → chunk-T6BMB7RR.mjs} +1 -1
  11. package/dist/{chunk-2KGIFAVY.js → chunk-UNIOU4JU.js} +2 -2
  12. package/dist/{chunk-GY2QOAY2.js → chunk-W3GFOWMA.js} +2 -2
  13. package/dist/{chunk-D2ZNLRPE.mjs → chunk-X2MB7L2W.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 +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.11.75](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.75) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.37.19**
10
+
5
11
  ## [0.11.74](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.74) (01/14/2026)
6
12
 
7
13
  ### Updated Dependencies
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-BZ6QEPPN.mjs';
1
+ import { withExecutor } from './chunk-C5EKHBNU.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -2683,7 +2683,6 @@ var PowerlinesContext = class _PowerlinesContext {
2683
2683
  #buildId = uuid();
2684
2684
  #releaseId = uuid();
2685
2685
  #timestamp = Date.now();
2686
- #entry = null;
2687
2686
  #fs;
2688
2687
  #tsconfig;
2689
2688
  #program;
@@ -2770,6 +2769,10 @@ var PowerlinesContext = class _PowerlinesContext {
2770
2769
  */
2771
2770
  resolver;
2772
2771
  /**
2772
+ * An internal object containing the added resolved entry type definitions for the project.
2773
+ */
2774
+ _entry = null;
2775
+ /**
2773
2776
  * The resolved configuration options
2774
2777
  */
2775
2778
  resolvePatterns = [];
@@ -2799,13 +2802,13 @@ var PowerlinesContext = class _PowerlinesContext {
2799
2802
  * The resolved entry type definitions for the project
2800
2803
  */
2801
2804
  get entry() {
2802
- return resolveEntriesSync(this, !this.#entry || this.#entry.length === 0 ? toArray(this.config.entry) : this.#entry);
2805
+ return resolveEntriesSync(this, !this._entry || this._entry.length === 0 ? toArray(this.config.entry) : this._entry);
2803
2806
  }
2804
2807
  /**
2805
2808
  * Sets the resolved entry type definitions for the project
2806
2809
  */
2807
2810
  set entry(value) {
2808
- this.#entry = value;
2811
+ this._entry = value;
2809
2812
  }
2810
2813
  /**
2811
2814
  * The TypeScript configuration parsed from the tsconfig file
@@ -3262,8 +3265,8 @@ var PowerlinesContext = class _PowerlinesContext {
3262
3265
  */
3263
3266
  async emitEntry(code, path, options = {}) {
3264
3267
  const entryPath = appendPath(replacePath(replacePath(replacePath(path, this.entryPath), this.config.projectRoot), this.workspaceConfig.workspaceRoot), this.entryPath);
3265
- this.#entry ??= [];
3266
- this.#entry.push({
3268
+ this._entry ??= [];
3269
+ this._entry.push({
3267
3270
  name: options.name,
3268
3271
  file: entryPath,
3269
3272
  input: options.input,
@@ -3292,8 +3295,8 @@ var PowerlinesContext = class _PowerlinesContext {
3292
3295
  */
3293
3296
  emitEntrySync(code, path, options = {}) {
3294
3297
  const entryPath = appendPath(replacePath(replacePath(replacePath(path, this.entryPath), this.config.projectRoot), this.workspaceConfig.workspaceRoot), this.entryPath);
3295
- this.#entry ??= [];
3296
- this.#entry.push({
3298
+ this._entry ??= [];
3299
+ this._entry.push({
3297
3300
  name: options?.name,
3298
3301
  file: entryPath,
3299
3302
  input: options?.input,
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIZMEFYEM_js = require('./chunk-IZMEFYEM.js');
3
+ var chunkPJVFSZBV_js = require('./chunk-PJVFSZBV.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 = chunkIZMEFYEM_js.withExecutor("lint", executorFn);
14
+ var executor = chunkPJVFSZBV_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIZMEFYEM_js = require('./chunk-IZMEFYEM.js');
3
+ var chunkPJVFSZBV_js = require('./chunk-PJVFSZBV.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 = chunkIZMEFYEM_js.withExecutor("build", executorFn);
22
+ var executor = chunkPJVFSZBV_js.withExecutor("build", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-BZ6QEPPN.mjs';
1
+ import { withExecutor } from './chunk-C5EKHBNU.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -2712,7 +2712,6 @@ var PowerlinesContext = class _PowerlinesContext {
2712
2712
  #buildId = uuid.uuid();
2713
2713
  #releaseId = uuid.uuid();
2714
2714
  #timestamp = Date.now();
2715
- #entry = null;
2716
2715
  #fs;
2717
2716
  #tsconfig;
2718
2717
  #program;
@@ -2799,6 +2798,10 @@ var PowerlinesContext = class _PowerlinesContext {
2799
2798
  */
2800
2799
  resolver;
2801
2800
  /**
2801
+ * An internal object containing the added resolved entry type definitions for the project.
2802
+ */
2803
+ _entry = null;
2804
+ /**
2802
2805
  * The resolved configuration options
2803
2806
  */
2804
2807
  resolvePatterns = [];
@@ -2828,13 +2831,13 @@ var PowerlinesContext = class _PowerlinesContext {
2828
2831
  * The resolved entry type definitions for the project
2829
2832
  */
2830
2833
  get entry() {
2831
- return resolveEntriesSync(this, !this.#entry || this.#entry.length === 0 ? toArray.toArray(this.config.entry) : this.#entry);
2834
+ return resolveEntriesSync(this, !this._entry || this._entry.length === 0 ? toArray.toArray(this.config.entry) : this._entry);
2832
2835
  }
2833
2836
  /**
2834
2837
  * Sets the resolved entry type definitions for the project
2835
2838
  */
2836
2839
  set entry(value) {
2837
- this.#entry = value;
2840
+ this._entry = value;
2838
2841
  }
2839
2842
  /**
2840
2843
  * The TypeScript configuration parsed from the tsconfig file
@@ -3291,8 +3294,8 @@ var PowerlinesContext = class _PowerlinesContext {
3291
3294
  */
3292
3295
  async emitEntry(code, path, options = {}) {
3293
3296
  const entryPath = append.appendPath(replace.replacePath(replace.replacePath(replace.replacePath(path, this.entryPath), this.config.projectRoot), this.workspaceConfig.workspaceRoot), this.entryPath);
3294
- this.#entry ??= [];
3295
- this.#entry.push({
3297
+ this._entry ??= [];
3298
+ this._entry.push({
3296
3299
  name: options.name,
3297
3300
  file: entryPath,
3298
3301
  input: options.input,
@@ -3321,8 +3324,8 @@ var PowerlinesContext = class _PowerlinesContext {
3321
3324
  */
3322
3325
  emitEntrySync(code, path, options = {}) {
3323
3326
  const entryPath = append.appendPath(replace.replacePath(replace.replacePath(replace.replacePath(path, this.entryPath), this.config.projectRoot), this.workspaceConfig.workspaceRoot), this.entryPath);
3324
- this.#entry ??= [];
3325
- this.#entry.push({
3327
+ this._entry ??= [];
3328
+ this._entry.push({
3326
3329
  name: options?.name,
3327
3330
  file: entryPath,
3328
3331
  input: options?.input,
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIZMEFYEM_js = require('./chunk-IZMEFYEM.js');
3
+ var chunkPJVFSZBV_js = require('./chunk-PJVFSZBV.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 = chunkIZMEFYEM_js.withExecutor("clean", executorFn);
14
+ var executor = chunkPJVFSZBV_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-BZ6QEPPN.mjs';
1
+ import { withExecutor } from './chunk-C5EKHBNU.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-BZ6QEPPN.mjs';
1
+ import { withExecutor } from './chunk-C5EKHBNU.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 chunkIZMEFYEM_js = require('./chunk-IZMEFYEM.js');
3
+ var chunkPJVFSZBV_js = require('./chunk-PJVFSZBV.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 = chunkIZMEFYEM_js.withExecutor("docs", executorFn);
14
+ var executor = chunkPJVFSZBV_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIZMEFYEM_js = require('./chunk-IZMEFYEM.js');
3
+ var chunkPJVFSZBV_js = require('./chunk-PJVFSZBV.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 = chunkIZMEFYEM_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkPJVFSZBV_js.withExecutor("prepare", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-BZ6QEPPN.mjs';
1
+ import { withExecutor } from './chunk-C5EKHBNU.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
package/dist/executors.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunk5IDX7ETF_js = require('./chunk-5IDX7ETF.js');
5
- var chunkGY2QOAY2_js = require('./chunk-GY2QOAY2.js');
6
- var chunkHGX3OE6S_js = require('./chunk-HGX3OE6S.js');
7
- var chunkYIOXR5LP_js = require('./chunk-YIOXR5LP.js');
8
- var chunk2KGIFAVY_js = require('./chunk-2KGIFAVY.js');
9
- require('./chunk-IZMEFYEM.js');
4
+ var chunkFXKDZBPH_js = require('./chunk-FXKDZBPH.js');
5
+ var chunkW3GFOWMA_js = require('./chunk-W3GFOWMA.js');
6
+ var chunkIUT2GTPA_js = require('./chunk-IUT2GTPA.js');
7
+ var chunkR4YRVL5L_js = require('./chunk-R4YRVL5L.js');
8
+ var chunkUNIOU4JU_js = require('./chunk-UNIOU4JU.js');
9
+ require('./chunk-PJVFSZBV.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 chunk5IDX7ETF_js.executor_default; }
17
+ get: function () { return chunkFXKDZBPH_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "prepare", {
20
20
  enumerable: true,
21
- get: function () { return chunkGY2QOAY2_js.executor_default; }
21
+ get: function () { return chunkW3GFOWMA_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "build", {
24
24
  enumerable: true,
25
- get: function () { return chunkHGX3OE6S_js.executor_default; }
25
+ get: function () { return chunkIUT2GTPA_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "clean", {
28
28
  enumerable: true,
29
- get: function () { return chunkYIOXR5LP_js.executor_default; }
29
+ get: function () { return chunkR4YRVL5L_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "docs", {
32
32
  enumerable: true,
33
- get: function () { return chunk2KGIFAVY_js.executor_default; }
33
+ get: function () { return chunkUNIOU4JU_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-QT7DODSL.mjs';
3
- export { executor_default as prepare } from './chunk-WCMC3I4Y.mjs';
4
- export { executor_default as build } from './chunk-AAFVC246.mjs';
5
- export { executor_default as clean } from './chunk-D2ZNLRPE.mjs';
6
- export { executor_default as docs } from './chunk-GEWS52QV.mjs';
7
- import './chunk-BZ6QEPPN.mjs';
2
+ export { executor_default as lint } from './chunk-RRTDRUGA.mjs';
3
+ export { executor_default as prepare } from './chunk-7PSQQKAZ.mjs';
4
+ export { executor_default as build } from './chunk-KV5ONCWH.mjs';
5
+ export { executor_default as clean } from './chunk-X2MB7L2W.mjs';
6
+ export { executor_default as docs } from './chunk-T6BMB7RR.mjs';
7
+ import './chunk-C5EKHBNU.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 chunkTNFRQNSW_js = require('./chunk-TNFRQNSW.js');
4
4
  require('./chunk-XO62WWX4.js');
5
- var chunk5IDX7ETF_js = require('./chunk-5IDX7ETF.js');
6
- var chunkGY2QOAY2_js = require('./chunk-GY2QOAY2.js');
7
- var chunkHGX3OE6S_js = require('./chunk-HGX3OE6S.js');
8
- var chunkYIOXR5LP_js = require('./chunk-YIOXR5LP.js');
9
- var chunk2KGIFAVY_js = require('./chunk-2KGIFAVY.js');
5
+ var chunkFXKDZBPH_js = require('./chunk-FXKDZBPH.js');
6
+ var chunkW3GFOWMA_js = require('./chunk-W3GFOWMA.js');
7
+ var chunkIUT2GTPA_js = require('./chunk-IUT2GTPA.js');
8
+ var chunkR4YRVL5L_js = require('./chunk-R4YRVL5L.js');
9
+ var chunkUNIOU4JU_js = require('./chunk-UNIOU4JU.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-IZMEFYEM.js');
12
+ require('./chunk-PJVFSZBV.js');
13
13
  require('./chunk-QSMJD4CD.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 chunk5IDX7ETF_js.executor_default; }
26
+ get: function () { return chunkFXKDZBPH_js.executor_default; }
27
27
  });
28
28
  Object.defineProperty(exports, "prepare", {
29
29
  enumerable: true,
30
- get: function () { return chunkGY2QOAY2_js.executor_default; }
30
+ get: function () { return chunkW3GFOWMA_js.executor_default; }
31
31
  });
32
32
  Object.defineProperty(exports, "build", {
33
33
  enumerable: true,
34
- get: function () { return chunkHGX3OE6S_js.executor_default; }
34
+ get: function () { return chunkIUT2GTPA_js.executor_default; }
35
35
  });
36
36
  Object.defineProperty(exports, "clean", {
37
37
  enumerable: true,
38
- get: function () { return chunkYIOXR5LP_js.executor_default; }
38
+ get: function () { return chunkR4YRVL5L_js.executor_default; }
39
39
  });
40
40
  Object.defineProperty(exports, "docs", {
41
41
  enumerable: true,
42
- get: function () { return chunk2KGIFAVY_js.executor_default; }
42
+ get: function () { return chunkUNIOU4JU_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-KPZS6OF5.mjs';
2
2
  import './chunk-UV4HQO3Y.mjs';
3
- export { executor_default as lint } from './chunk-QT7DODSL.mjs';
4
- export { executor_default as prepare } from './chunk-WCMC3I4Y.mjs';
5
- export { executor_default as build } from './chunk-AAFVC246.mjs';
6
- export { executor_default as clean } from './chunk-D2ZNLRPE.mjs';
7
- export { executor_default as docs } from './chunk-GEWS52QV.mjs';
3
+ export { executor_default as lint } from './chunk-RRTDRUGA.mjs';
4
+ export { executor_default as prepare } from './chunk-7PSQQKAZ.mjs';
5
+ export { executor_default as build } from './chunk-KV5ONCWH.mjs';
6
+ export { executor_default as clean } from './chunk-X2MB7L2W.mjs';
7
+ export { executor_default as docs } from './chunk-T6BMB7RR.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-BZ6QEPPN.mjs';
10
+ import './chunk-C5EKHBNU.mjs';
11
11
  import './chunk-LK4PXBKI.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 chunkIZMEFYEM_js = require('../../chunk-IZMEFYEM.js');
3
+ var chunkPJVFSZBV_js = require('../../chunk-PJVFSZBV.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 chunkIZMEFYEM_js.withExecutor; }
11
+ get: function () { return chunkPJVFSZBV_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-BZ6QEPPN.mjs';
1
+ export { withExecutor } from '../../chunk-C5EKHBNU.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 chunkHGX3OE6S_js = require('../../../chunk-HGX3OE6S.js');
6
- require('../../../chunk-IZMEFYEM.js');
5
+ var chunkIUT2GTPA_js = require('../../../chunk-IUT2GTPA.js');
6
+ require('../../../chunk-PJVFSZBV.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 chunkHGX3OE6S_js.executor_default; }
14
+ get: function () { return chunkIUT2GTPA_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkHGX3OE6S_js.executorFn; }
18
+ get: function () { return chunkIUT2GTPA_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-AAFVC246.mjs';
2
- import '../../../chunk-BZ6QEPPN.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-KV5ONCWH.mjs';
2
+ import '../../../chunk-C5EKHBNU.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 chunkYIOXR5LP_js = require('../../../chunk-YIOXR5LP.js');
6
- require('../../../chunk-IZMEFYEM.js');
5
+ var chunkR4YRVL5L_js = require('../../../chunk-R4YRVL5L.js');
6
+ require('../../../chunk-PJVFSZBV.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 chunkYIOXR5LP_js.executor_default; }
14
+ get: function () { return chunkR4YRVL5L_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkYIOXR5LP_js.executorFn; }
18
+ get: function () { return chunkR4YRVL5L_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-D2ZNLRPE.mjs';
2
- import '../../../chunk-BZ6QEPPN.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-X2MB7L2W.mjs';
2
+ import '../../../chunk-C5EKHBNU.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 chunk2KGIFAVY_js = require('../../../chunk-2KGIFAVY.js');
6
- require('../../../chunk-IZMEFYEM.js');
5
+ var chunkUNIOU4JU_js = require('../../../chunk-UNIOU4JU.js');
6
+ require('../../../chunk-PJVFSZBV.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 chunk2KGIFAVY_js.executor_default; }
14
+ get: function () { return chunkUNIOU4JU_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk2KGIFAVY_js.executorFn; }
18
+ get: function () { return chunkUNIOU4JU_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-GEWS52QV.mjs';
2
- import '../../../chunk-BZ6QEPPN.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-T6BMB7RR.mjs';
2
+ import '../../../chunk-C5EKHBNU.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 chunk5IDX7ETF_js = require('../../../chunk-5IDX7ETF.js');
6
- require('../../../chunk-IZMEFYEM.js');
5
+ var chunkFXKDZBPH_js = require('../../../chunk-FXKDZBPH.js');
6
+ require('../../../chunk-PJVFSZBV.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 chunk5IDX7ETF_js.executor_default; }
14
+ get: function () { return chunkFXKDZBPH_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk5IDX7ETF_js.executorFn; }
18
+ get: function () { return chunkFXKDZBPH_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-QT7DODSL.mjs';
2
- import '../../../chunk-BZ6QEPPN.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-RRTDRUGA.mjs';
2
+ import '../../../chunk-C5EKHBNU.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 chunkGY2QOAY2_js = require('../../../chunk-GY2QOAY2.js');
6
- require('../../../chunk-IZMEFYEM.js');
5
+ var chunkW3GFOWMA_js = require('../../../chunk-W3GFOWMA.js');
6
+ require('../../../chunk-PJVFSZBV.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 chunkGY2QOAY2_js.executor_default; }
14
+ get: function () { return chunkW3GFOWMA_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkGY2QOAY2_js.executorFn; }
18
+ get: function () { return chunkW3GFOWMA_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-WCMC3I4Y.mjs';
2
- import '../../../chunk-BZ6QEPPN.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-7PSQQKAZ.mjs';
2
+ import '../../../chunk-C5EKHBNU.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.11.75",
3
+ "version": "0.11.76",
4
4
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -196,7 +196,7 @@
196
196
  "defu": "^6.1.4",
197
197
  "jiti": "^2.6.1",
198
198
  "nx": "^22.3.3",
199
- "powerlines": "^0.37.19"
199
+ "powerlines": "^0.37.20"
200
200
  },
201
201
  "devDependencies": {
202
202
  "@nx/workspace": "^22.3.3",
@@ -210,5 +210,5 @@
210
210
  "publishConfig": { "access": "public" },
211
211
  "executors": "./executors.json",
212
212
  "generators": "./generators.json",
213
- "gitHead": "d0bd6096193d9631890edf4c73f83facd19afb55"
213
+ "gitHead": "968d9fbac427cd3772976362a6a888559d5e4b50"
214
214
  }