@powerlines/nx 0.11.192 → 0.11.193

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 (38) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/{chunk-ICIFN76F.mjs → chunk-43EY2DNL.mjs} +6 -2
  3. package/dist/{chunk-2X5EQ5TE.js → chunk-5JZFESPF.js} +2 -2
  4. package/dist/{chunk-PQE6BZCU.mjs → chunk-734NF6ZG.mjs} +1 -1
  5. package/dist/{chunk-6TS4KKHZ.js → chunk-75YSMHGI.js} +2 -2
  6. package/dist/{chunk-3WUDHEEV.mjs → chunk-7U5UKOOX.mjs} +1 -1
  7. package/dist/{chunk-N4YJHHFB.js → chunk-DCSNOS3O.js} +2 -2
  8. package/dist/{chunk-KUZFN4R7.mjs → chunk-ELBUYWVF.mjs} +1 -1
  9. package/dist/{chunk-MO23RMS6.mjs → chunk-EYI3IJDF.mjs} +1 -1
  10. package/dist/{chunk-ZWW5WX2O.js → chunk-L7AB5AHV.js} +2 -2
  11. package/dist/{chunk-4KI2CUPF.mjs → chunk-PN3ISOQX.mjs} +1 -1
  12. package/dist/{chunk-XZ2ZMUHC.mjs → chunk-QPQ2NXTQ.mjs} +1 -1
  13. package/dist/{chunk-VYUUYCLC.js → chunk-S2PXRVRI.js} +6 -2
  14. package/dist/{chunk-K47ZSAOM.js → chunk-TWOXCXFE.js} +14 -5
  15. package/dist/{chunk-G4H2HOVQ.js → chunk-WJP3FWAH.js} +2 -2
  16. package/dist/{chunk-I2UQS6XA.js → chunk-ZV3F6O52.js} +2 -2
  17. package/dist/{chunk-35MFJYOO.mjs → chunk-ZYOL33SX.mjs} +14 -5
  18. package/dist/executors.js +13 -13
  19. package/dist/executors.mjs +6 -6
  20. package/dist/index.js +16 -16
  21. package/dist/index.mjs +8 -8
  22. package/dist/src/base/base-executor.js +2 -2
  23. package/dist/src/base/base-executor.mjs +1 -1
  24. package/dist/src/executors/build/executor.js +4 -4
  25. package/dist/src/executors/build/executor.mjs +2 -2
  26. package/dist/src/executors/clean/executor.js +4 -4
  27. package/dist/src/executors/clean/executor.mjs +2 -2
  28. package/dist/src/executors/docs/executor.js +4 -4
  29. package/dist/src/executors/docs/executor.mjs +2 -2
  30. package/dist/src/executors/lint/executor.js +4 -4
  31. package/dist/src/executors/lint/executor.mjs +2 -2
  32. package/dist/src/executors/prepare/executor.js +4 -4
  33. package/dist/src/executors/prepare/executor.mjs +2 -2
  34. package/dist/src/helpers/plugin-utilities.js +4 -4
  35. package/dist/src/helpers/plugin-utilities.mjs +1 -1
  36. package/dist/src/plugin/index.js +3 -3
  37. package/dist/src/plugin/index.mjs +2 -2
  38. 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.192](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.192) (02/02/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.38.32**
10
+
5
11
  ## [0.11.191](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.191) (02/01/2026)
6
12
 
7
13
  ### Miscellaneous
@@ -75,7 +75,7 @@ import { resolve } from 'node:path';
75
75
 
76
76
  // ../powerlines/package.json
77
77
  var package_default = {
78
- version: "0.38.31"};
78
+ version: "0.38.32"};
79
79
  var VirtualFileSystemHost = class extends InMemoryFileSystemHost {
80
80
  static {
81
81
  __name(this, "VirtualFileSystemHost");
@@ -4625,7 +4625,11 @@ ${formatTypes(types)}
4625
4625
  command: "build"
4626
4626
  }) {
4627
4627
  this.context.info("\u{1F4E6} Building the Powerlines project");
4628
- await this.prepare(inlineConfig);
4628
+ await this.context.generateChecksum();
4629
+ if (this.context.meta.checksum !== this.context.persistedMeta?.checksum || this.context.config.skipCache) {
4630
+ this.context.info("The project has been modified since the last time `prepare` was ran. Re-preparing the project.");
4631
+ await this.prepare(inlineConfig);
4632
+ }
4629
4633
  if (this.context.config.singleBuild) {
4630
4634
  await this.#handleBuild(await this.#context.toEnvironment());
4631
4635
  } else {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkVYUUYCLC_js = require('./chunk-VYUUYCLC.js');
3
+ var chunkS2PXRVRI_js = require('./chunk-S2PXRVRI.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 = chunkVYUUYCLC_js.withExecutor("docs", executorFn);
14
+ var executor = chunkS2PXRVRI_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-ICIFN76F.mjs';
1
+ import { withExecutor } from './chunk-43EY2DNL.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 chunkVYUUYCLC_js = require('./chunk-VYUUYCLC.js');
3
+ var chunkS2PXRVRI_js = require('./chunk-S2PXRVRI.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 = chunkVYUUYCLC_js.withExecutor("clean", executorFn);
14
+ var executor = chunkS2PXRVRI_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-ICIFN76F.mjs';
1
+ import { withExecutor } from './chunk-43EY2DNL.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 chunkVYUUYCLC_js = require('./chunk-VYUUYCLC.js');
3
+ var chunkS2PXRVRI_js = require('./chunk-S2PXRVRI.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 = chunkVYUUYCLC_js.withExecutor("lint", executorFn);
14
+ var executor = chunkS2PXRVRI_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { createNxPlugin } from './chunk-35MFJYOO.mjs';
1
+ import { createNxPlugin } from './chunk-ZYOL33SX.mjs';
2
2
 
3
3
  // src/plugin/index.ts
4
4
  var createNodesV2 = createNxPlugin({
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-ICIFN76F.mjs';
1
+ import { withExecutor } from './chunk-43EY2DNL.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkVYUUYCLC_js = require('./chunk-VYUUYCLC.js');
3
+ var chunkS2PXRVRI_js = require('./chunk-S2PXRVRI.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 = chunkVYUUYCLC_js.withExecutor("build", executorFn);
22
+ var executor = chunkS2PXRVRI_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-ICIFN76F.mjs';
1
+ import { withExecutor } from './chunk-43EY2DNL.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-ICIFN76F.mjs';
1
+ import { withExecutor } from './chunk-43EY2DNL.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -103,7 +103,7 @@ var $__namespace = /*#__PURE__*/_interopNamespace($);
103
103
 
104
104
  // ../powerlines/package.json
105
105
  var package_default = {
106
- version: "0.38.31"};
106
+ version: "0.38.32"};
107
107
  var VirtualFileSystemHost = class extends tsMorph.InMemoryFileSystemHost {
108
108
  static {
109
109
  chunkSHUYVCID_js.__name(this, "VirtualFileSystemHost");
@@ -4653,7 +4653,11 @@ ${formatTypes(types)}
4653
4653
  command: "build"
4654
4654
  }) {
4655
4655
  this.context.info("\u{1F4E6} Building the Powerlines project");
4656
- await this.prepare(inlineConfig);
4656
+ await this.context.generateChecksum();
4657
+ if (this.context.meta.checksum !== this.context.persistedMeta?.checksum || this.context.config.skipCache) {
4658
+ this.context.info("The project has been modified since the last time `prepare` was ran. Re-preparing the project.");
4659
+ await this.prepare(inlineConfig);
4660
+ }
4657
4661
  if (this.context.config.singleBuild) {
4658
4662
  await this.#handleBuild(await this.#context.toEnvironment());
4659
4663
  } else {
@@ -14,6 +14,7 @@ var joinPaths = require('@stryke/path/join-paths');
14
14
  var kebabCase = require('@stryke/string-format/kebab-case');
15
15
  var titleCase = require('@stryke/string-format/title-case');
16
16
  var isError = require('@stryke/type-checks/is-error');
17
+ var isSetObject = require('@stryke/type-checks/is-set-object');
17
18
  var defu = require('defu');
18
19
  var jiti = require('jiti');
19
20
  var promises = require('fs/promises');
@@ -106,6 +107,7 @@ function createNxPlugin(opts) {
106
107
  }
107
108
  if (options?.clean !== false && !targets[options?.clean?.targetName || "clean"]) {
108
109
  targets[options?.clean?.targetName || "clean"] = {
110
+ cache: true,
109
111
  inputs: Array.isArray(options?.clean?.inputs) ? options.clean.inputs : nxJson.withNamedInputs(targetInputs, [
110
112
  options?.clean?.inputs || "typescript"
111
113
  ]),
@@ -171,6 +173,7 @@ function createNxPlugin(opts) {
171
173
  }
172
174
  if (options?.build !== false && !targets[options?.build?.targetName || "build"]) {
173
175
  targets[options?.build?.targetName || "build"] = {
176
+ cache: true,
174
177
  inputs: Array.isArray(options?.build?.inputs) ? options.build.inputs : nxJson.withNamedInputs(targetInputs, [
175
178
  options?.build?.inputs || "typescript"
176
179
  ]),
@@ -179,8 +182,9 @@ function createNxPlugin(opts) {
179
182
  ],
180
183
  executor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || "build"}`,
181
184
  dependsOn: options?.build?.dependsOn ?? [
182
- `^${options?.build?.targetName || "build"}`
183
- ],
185
+ `^${options?.build?.targetName || "build"}`,
186
+ userConfig.skipCache ? void 0 : isSetObject.isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
187
+ ].filter(Boolean),
184
188
  defaultConfiguration: options?.build?.defaultConfiguration || "production",
185
189
  options: {
186
190
  entry: userConfig.entry,
@@ -205,6 +209,7 @@ function createNxPlugin(opts) {
205
209
  }
206
210
  if (options?.lint !== false && !targets[options?.lint?.targetName || "lint"]) {
207
211
  targets[options?.lint?.targetName || "lint"] = {
212
+ cache: true,
208
213
  inputs: Array.isArray(options?.lint?.inputs) ? options.lint.inputs : nxJson.withNamedInputs([
209
214
  ...targetInputs,
210
215
  artifactsFolder
@@ -219,7 +224,8 @@ function createNxPlugin(opts) {
219
224
  ],
220
225
  executor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || "lint"}`,
221
226
  dependsOn: options?.lint?.dependsOn ?? [
222
- `^${options?.lint?.targetName || "lint"}`
227
+ `^${options?.lint?.targetName || "lint"}`,
228
+ userConfig.skipCache ? void 0 : isSetObject.isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
223
229
  ].filter(Boolean),
224
230
  defaultConfiguration: options?.lint?.defaultConfiguration || "production",
225
231
  options: {
@@ -244,6 +250,7 @@ function createNxPlugin(opts) {
244
250
  }
245
251
  if (options?.docs !== false && !targets[options?.docs?.targetName || "docs"]) {
246
252
  targets[options?.docs?.targetName || "docs"] = {
253
+ cache: true,
247
254
  inputs: Array.isArray(options?.docs?.inputs) ? options.docs.inputs : nxJson.withNamedInputs([
248
255
  ...targetInputs,
249
256
  artifactsFolder
@@ -259,7 +266,8 @@ function createNxPlugin(opts) {
259
266
  executor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || "docs"}`,
260
267
  dependsOn: options?.docs?.dependsOn ?? [
261
268
  `^${options?.docs?.targetName || "docs"}`,
262
- options?.build !== false && `${options?.build?.targetName || "build"}`
269
+ options?.build !== false && `${options?.build?.targetName || "build"}`,
270
+ userConfig.skipCache ? void 0 : isSetObject.isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
263
271
  ].filter(Boolean),
264
272
  defaultConfiguration: options?.docs?.defaultConfiguration || "production",
265
273
  options: {
@@ -299,7 +307,8 @@ function createNxPlugin(opts) {
299
307
  executor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || "deploy"}`,
300
308
  dependsOn: options?.deploy?.dependsOn ?? [
301
309
  `^${options?.deploy?.targetName || "deploy"}`,
302
- options?.build !== false && `${options?.build?.targetName || "build"}`
310
+ options?.build !== false && `${options?.build?.targetName || "build"}`,
311
+ userConfig.skipCache ? void 0 : isSetObject.isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
303
312
  ].filter(Boolean),
304
313
  defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
305
314
  options: {
@@ -1,9 +1,9 @@
1
1
  'use strict';
2
2
 
3
- var chunkK47ZSAOM_js = require('./chunk-K47ZSAOM.js');
3
+ var chunkTWOXCXFE_js = require('./chunk-TWOXCXFE.js');
4
4
 
5
5
  // src/plugin/index.ts
6
- var createNodesV2 = chunkK47ZSAOM_js.createNxPlugin({
6
+ var createNodesV2 = chunkTWOXCXFE_js.createNxPlugin({
7
7
  framework: "powerlines"
8
8
  });
9
9
 
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkVYUUYCLC_js = require('./chunk-VYUUYCLC.js');
3
+ var chunkS2PXRVRI_js = require('./chunk-S2PXRVRI.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 = chunkVYUUYCLC_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkS2PXRVRI_js.withExecutor("prepare", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -12,6 +12,7 @@ import { joinPaths } from '@stryke/path/join-paths';
12
12
  import { kebabCase } from '@stryke/string-format/kebab-case';
13
13
  import { titleCase } from '@stryke/string-format/title-case';
14
14
  import { isError } from '@stryke/type-checks/is-error';
15
+ import { isSetObject } from '@stryke/type-checks/is-set-object';
15
16
  import defu from 'defu';
16
17
  import { createJiti } from 'jiti';
17
18
  import { readFile } from 'node:fs/promises';
@@ -100,6 +101,7 @@ function createNxPlugin(opts) {
100
101
  }
101
102
  if (options?.clean !== false && !targets[options?.clean?.targetName || "clean"]) {
102
103
  targets[options?.clean?.targetName || "clean"] = {
104
+ cache: true,
103
105
  inputs: Array.isArray(options?.clean?.inputs) ? options.clean.inputs : withNamedInputs(targetInputs, [
104
106
  options?.clean?.inputs || "typescript"
105
107
  ]),
@@ -165,6 +167,7 @@ function createNxPlugin(opts) {
165
167
  }
166
168
  if (options?.build !== false && !targets[options?.build?.targetName || "build"]) {
167
169
  targets[options?.build?.targetName || "build"] = {
170
+ cache: true,
168
171
  inputs: Array.isArray(options?.build?.inputs) ? options.build.inputs : withNamedInputs(targetInputs, [
169
172
  options?.build?.inputs || "typescript"
170
173
  ]),
@@ -173,8 +176,9 @@ function createNxPlugin(opts) {
173
176
  ],
174
177
  executor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || "build"}`,
175
178
  dependsOn: options?.build?.dependsOn ?? [
176
- `^${options?.build?.targetName || "build"}`
177
- ],
179
+ `^${options?.build?.targetName || "build"}`,
180
+ userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
181
+ ].filter(Boolean),
178
182
  defaultConfiguration: options?.build?.defaultConfiguration || "production",
179
183
  options: {
180
184
  entry: userConfig.entry,
@@ -199,6 +203,7 @@ function createNxPlugin(opts) {
199
203
  }
200
204
  if (options?.lint !== false && !targets[options?.lint?.targetName || "lint"]) {
201
205
  targets[options?.lint?.targetName || "lint"] = {
206
+ cache: true,
202
207
  inputs: Array.isArray(options?.lint?.inputs) ? options.lint.inputs : withNamedInputs([
203
208
  ...targetInputs,
204
209
  artifactsFolder
@@ -213,7 +218,8 @@ function createNxPlugin(opts) {
213
218
  ],
214
219
  executor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || "lint"}`,
215
220
  dependsOn: options?.lint?.dependsOn ?? [
216
- `^${options?.lint?.targetName || "lint"}`
221
+ `^${options?.lint?.targetName || "lint"}`,
222
+ userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
217
223
  ].filter(Boolean),
218
224
  defaultConfiguration: options?.lint?.defaultConfiguration || "production",
219
225
  options: {
@@ -238,6 +244,7 @@ function createNxPlugin(opts) {
238
244
  }
239
245
  if (options?.docs !== false && !targets[options?.docs?.targetName || "docs"]) {
240
246
  targets[options?.docs?.targetName || "docs"] = {
247
+ cache: true,
241
248
  inputs: Array.isArray(options?.docs?.inputs) ? options.docs.inputs : withNamedInputs([
242
249
  ...targetInputs,
243
250
  artifactsFolder
@@ -253,7 +260,8 @@ function createNxPlugin(opts) {
253
260
  executor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || "docs"}`,
254
261
  dependsOn: options?.docs?.dependsOn ?? [
255
262
  `^${options?.docs?.targetName || "docs"}`,
256
- options?.build !== false && `${options?.build?.targetName || "build"}`
263
+ options?.build !== false && `${options?.build?.targetName || "build"}`,
264
+ userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
257
265
  ].filter(Boolean),
258
266
  defaultConfiguration: options?.docs?.defaultConfiguration || "production",
259
267
  options: {
@@ -293,7 +301,8 @@ function createNxPlugin(opts) {
293
301
  executor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || "deploy"}`,
294
302
  dependsOn: options?.deploy?.dependsOn ?? [
295
303
  `^${options?.deploy?.targetName || "deploy"}`,
296
- options?.build !== false && `${options?.build?.targetName || "build"}`
304
+ options?.build !== false && `${options?.build?.targetName || "build"}`,
305
+ userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"
297
306
  ].filter(Boolean),
298
307
  defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
299
308
  options: {
package/dist/executors.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkN4YJHHFB_js = require('./chunk-N4YJHHFB.js');
5
- var chunkI2UQS6XA_js = require('./chunk-I2UQS6XA.js');
6
- var chunkZWW5WX2O_js = require('./chunk-ZWW5WX2O.js');
7
- var chunk6TS4KKHZ_js = require('./chunk-6TS4KKHZ.js');
8
- var chunk2X5EQ5TE_js = require('./chunk-2X5EQ5TE.js');
9
- require('./chunk-VYUUYCLC.js');
4
+ var chunkDCSNOS3O_js = require('./chunk-DCSNOS3O.js');
5
+ var chunkZV3F6O52_js = require('./chunk-ZV3F6O52.js');
6
+ var chunkL7AB5AHV_js = require('./chunk-L7AB5AHV.js');
7
+ var chunk5JZFESPF_js = require('./chunk-5JZFESPF.js');
8
+ var chunk75YSMHGI_js = require('./chunk-75YSMHGI.js');
9
+ require('./chunk-S2PXRVRI.js');
10
10
  require('./chunk-NU3VTAH5.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 chunkN4YJHHFB_js.executor_default; }
17
+ get: function () { return chunkDCSNOS3O_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "prepare", {
20
20
  enumerable: true,
21
- get: function () { return chunkI2UQS6XA_js.executor_default; }
21
+ get: function () { return chunkZV3F6O52_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "build", {
24
24
  enumerable: true,
25
- get: function () { return chunkZWW5WX2O_js.executor_default; }
25
+ get: function () { return chunkL7AB5AHV_js.executor_default; }
26
26
  });
27
- Object.defineProperty(exports, "clean", {
27
+ Object.defineProperty(exports, "docs", {
28
28
  enumerable: true,
29
- get: function () { return chunk6TS4KKHZ_js.executor_default; }
29
+ get: function () { return chunk5JZFESPF_js.executor_default; }
30
30
  });
31
- Object.defineProperty(exports, "docs", {
31
+ Object.defineProperty(exports, "clean", {
32
32
  enumerable: true,
33
- get: function () { return chunk2X5EQ5TE_js.executor_default; }
33
+ get: function () { return chunk75YSMHGI_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-PQE6BZCU.mjs';
3
- export { executor_default as prepare } from './chunk-MO23RMS6.mjs';
4
- export { executor_default as build } from './chunk-XZ2ZMUHC.mjs';
5
- export { executor_default as clean } from './chunk-4KI2CUPF.mjs';
6
- export { executor_default as docs } from './chunk-3WUDHEEV.mjs';
7
- import './chunk-ICIFN76F.mjs';
2
+ export { executor_default as lint } from './chunk-734NF6ZG.mjs';
3
+ export { executor_default as prepare } from './chunk-EYI3IJDF.mjs';
4
+ export { executor_default as build } from './chunk-QPQ2NXTQ.mjs';
5
+ export { executor_default as docs } from './chunk-7U5UKOOX.mjs';
6
+ export { executor_default as clean } from './chunk-PN3ISOQX.mjs';
7
+ import './chunk-43EY2DNL.mjs';
8
8
  import './chunk-AGZ4P3AS.mjs';
9
9
  import './chunk-O6YSETKJ.mjs';
package/dist/index.js CHANGED
@@ -1,16 +1,16 @@
1
1
  'use strict';
2
2
 
3
- var chunkG4H2HOVQ_js = require('./chunk-G4H2HOVQ.js');
3
+ var chunkWJP3FWAH_js = require('./chunk-WJP3FWAH.js');
4
4
  require('./chunk-XO62WWX4.js');
5
- var chunkN4YJHHFB_js = require('./chunk-N4YJHHFB.js');
6
- var chunkI2UQS6XA_js = require('./chunk-I2UQS6XA.js');
7
- var chunkZWW5WX2O_js = require('./chunk-ZWW5WX2O.js');
8
- var chunk6TS4KKHZ_js = require('./chunk-6TS4KKHZ.js');
9
- var chunk2X5EQ5TE_js = require('./chunk-2X5EQ5TE.js');
5
+ var chunkDCSNOS3O_js = require('./chunk-DCSNOS3O.js');
6
+ var chunkZV3F6O52_js = require('./chunk-ZV3F6O52.js');
7
+ var chunkL7AB5AHV_js = require('./chunk-L7AB5AHV.js');
8
+ var chunk5JZFESPF_js = require('./chunk-5JZFESPF.js');
9
+ var chunk75YSMHGI_js = require('./chunk-75YSMHGI.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-VYUUYCLC.js');
13
- require('./chunk-K47ZSAOM.js');
12
+ require('./chunk-S2PXRVRI.js');
13
+ require('./chunk-TWOXCXFE.js');
14
14
  require('./chunk-NU3VTAH5.js');
15
15
  require('./chunk-IQVSZEQ6.js');
16
16
  require('./chunk-SHUYVCID.js');
@@ -19,27 +19,27 @@ require('./chunk-SHUYVCID.js');
19
19
 
20
20
  Object.defineProperty(exports, "createNodesV2", {
21
21
  enumerable: true,
22
- get: function () { return chunkG4H2HOVQ_js.createNodesV2; }
22
+ get: function () { return chunkWJP3FWAH_js.createNodesV2; }
23
23
  });
24
24
  Object.defineProperty(exports, "lint", {
25
25
  enumerable: true,
26
- get: function () { return chunkN4YJHHFB_js.executor_default; }
26
+ get: function () { return chunkDCSNOS3O_js.executor_default; }
27
27
  });
28
28
  Object.defineProperty(exports, "prepare", {
29
29
  enumerable: true,
30
- get: function () { return chunkI2UQS6XA_js.executor_default; }
30
+ get: function () { return chunkZV3F6O52_js.executor_default; }
31
31
  });
32
32
  Object.defineProperty(exports, "build", {
33
33
  enumerable: true,
34
- get: function () { return chunkZWW5WX2O_js.executor_default; }
34
+ get: function () { return chunkL7AB5AHV_js.executor_default; }
35
35
  });
36
- Object.defineProperty(exports, "clean", {
36
+ Object.defineProperty(exports, "docs", {
37
37
  enumerable: true,
38
- get: function () { return chunk6TS4KKHZ_js.executor_default; }
38
+ get: function () { return chunk5JZFESPF_js.executor_default; }
39
39
  });
40
- Object.defineProperty(exports, "docs", {
40
+ Object.defineProperty(exports, "clean", {
41
41
  enumerable: true,
42
- get: function () { return chunk2X5EQ5TE_js.executor_default; }
42
+ get: function () { return chunk75YSMHGI_js.executor_default; }
43
43
  });
44
44
  Object.defineProperty(exports, "sync", {
45
45
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,14 +1,14 @@
1
- export { createNodesV2 } from './chunk-KUZFN4R7.mjs';
1
+ export { createNodesV2 } from './chunk-ELBUYWVF.mjs';
2
2
  import './chunk-UV4HQO3Y.mjs';
3
- export { executor_default as lint } from './chunk-PQE6BZCU.mjs';
4
- export { executor_default as prepare } from './chunk-MO23RMS6.mjs';
5
- export { executor_default as build } from './chunk-XZ2ZMUHC.mjs';
6
- export { executor_default as clean } from './chunk-4KI2CUPF.mjs';
7
- export { executor_default as docs } from './chunk-3WUDHEEV.mjs';
3
+ export { executor_default as lint } from './chunk-734NF6ZG.mjs';
4
+ export { executor_default as prepare } from './chunk-EYI3IJDF.mjs';
5
+ export { executor_default as build } from './chunk-QPQ2NXTQ.mjs';
6
+ export { executor_default as docs } from './chunk-7U5UKOOX.mjs';
7
+ export { executor_default as clean } from './chunk-PN3ISOQX.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-ICIFN76F.mjs';
11
- import './chunk-35MFJYOO.mjs';
10
+ import './chunk-43EY2DNL.mjs';
11
+ import './chunk-ZYOL33SX.mjs';
12
12
  import './chunk-AGZ4P3AS.mjs';
13
13
  import './chunk-IC47MFKB.mjs';
14
14
  import './chunk-O6YSETKJ.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkVYUUYCLC_js = require('../../chunk-VYUUYCLC.js');
3
+ var chunkS2PXRVRI_js = require('../../chunk-S2PXRVRI.js');
4
4
  require('../../chunk-NU3VTAH5.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 chunkVYUUYCLC_js.withExecutor; }
11
+ get: function () { return chunkS2PXRVRI_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-ICIFN76F.mjs';
1
+ export { withExecutor } from '../../chunk-43EY2DNL.mjs';
2
2
  import '../../chunk-AGZ4P3AS.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 chunkZWW5WX2O_js = require('../../../chunk-ZWW5WX2O.js');
6
- require('../../../chunk-VYUUYCLC.js');
5
+ var chunkL7AB5AHV_js = require('../../../chunk-L7AB5AHV.js');
6
+ require('../../../chunk-S2PXRVRI.js');
7
7
  require('../../../chunk-NU3VTAH5.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 chunkZWW5WX2O_js.executor_default; }
14
+ get: function () { return chunkL7AB5AHV_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkZWW5WX2O_js.executorFn; }
18
+ get: function () { return chunkL7AB5AHV_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-XZ2ZMUHC.mjs';
2
- import '../../../chunk-ICIFN76F.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-QPQ2NXTQ.mjs';
2
+ import '../../../chunk-43EY2DNL.mjs';
3
3
  import '../../../chunk-AGZ4P3AS.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 chunk6TS4KKHZ_js = require('../../../chunk-6TS4KKHZ.js');
6
- require('../../../chunk-VYUUYCLC.js');
5
+ var chunk75YSMHGI_js = require('../../../chunk-75YSMHGI.js');
6
+ require('../../../chunk-S2PXRVRI.js');
7
7
  require('../../../chunk-NU3VTAH5.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 chunk6TS4KKHZ_js.executor_default; }
14
+ get: function () { return chunk75YSMHGI_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk6TS4KKHZ_js.executorFn; }
18
+ get: function () { return chunk75YSMHGI_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-4KI2CUPF.mjs';
2
- import '../../../chunk-ICIFN76F.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-PN3ISOQX.mjs';
2
+ import '../../../chunk-43EY2DNL.mjs';
3
3
  import '../../../chunk-AGZ4P3AS.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 chunk2X5EQ5TE_js = require('../../../chunk-2X5EQ5TE.js');
6
- require('../../../chunk-VYUUYCLC.js');
5
+ var chunk5JZFESPF_js = require('../../../chunk-5JZFESPF.js');
6
+ require('../../../chunk-S2PXRVRI.js');
7
7
  require('../../../chunk-NU3VTAH5.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 chunk2X5EQ5TE_js.executor_default; }
14
+ get: function () { return chunk5JZFESPF_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk2X5EQ5TE_js.executorFn; }
18
+ get: function () { return chunk5JZFESPF_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-3WUDHEEV.mjs';
2
- import '../../../chunk-ICIFN76F.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-7U5UKOOX.mjs';
2
+ import '../../../chunk-43EY2DNL.mjs';
3
3
  import '../../../chunk-AGZ4P3AS.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 chunkN4YJHHFB_js = require('../../../chunk-N4YJHHFB.js');
6
- require('../../../chunk-VYUUYCLC.js');
5
+ var chunkDCSNOS3O_js = require('../../../chunk-DCSNOS3O.js');
6
+ require('../../../chunk-S2PXRVRI.js');
7
7
  require('../../../chunk-NU3VTAH5.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 chunkN4YJHHFB_js.executor_default; }
14
+ get: function () { return chunkDCSNOS3O_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkN4YJHHFB_js.executorFn; }
18
+ get: function () { return chunkDCSNOS3O_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-PQE6BZCU.mjs';
2
- import '../../../chunk-ICIFN76F.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-734NF6ZG.mjs';
2
+ import '../../../chunk-43EY2DNL.mjs';
3
3
  import '../../../chunk-AGZ4P3AS.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 chunkI2UQS6XA_js = require('../../../chunk-I2UQS6XA.js');
6
- require('../../../chunk-VYUUYCLC.js');
5
+ var chunkZV3F6O52_js = require('../../../chunk-ZV3F6O52.js');
6
+ require('../../../chunk-S2PXRVRI.js');
7
7
  require('../../../chunk-NU3VTAH5.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 chunkI2UQS6XA_js.executor_default; }
14
+ get: function () { return chunkZV3F6O52_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkI2UQS6XA_js.executorFn; }
18
+ get: function () { return chunkZV3F6O52_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-MO23RMS6.mjs';
2
- import '../../../chunk-ICIFN76F.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-EYI3IJDF.mjs';
2
+ import '../../../chunk-43EY2DNL.mjs';
3
3
  import '../../../chunk-AGZ4P3AS.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkK47ZSAOM_js = require('../../chunk-K47ZSAOM.js');
3
+ var chunkTWOXCXFE_js = require('../../chunk-TWOXCXFE.js');
4
4
  require('../../chunk-NU3VTAH5.js');
5
5
  require('../../chunk-IQVSZEQ6.js');
6
6
  require('../../chunk-SHUYVCID.js');
@@ -9,13 +9,13 @@ require('../../chunk-SHUYVCID.js');
9
9
 
10
10
  Object.defineProperty(exports, "createNxPlugin", {
11
11
  enumerable: true,
12
- get: function () { return chunkK47ZSAOM_js.createNxPlugin; }
12
+ get: function () { return chunkTWOXCXFE_js.createNxPlugin; }
13
13
  });
14
14
  Object.defineProperty(exports, "getNxPluginInputs", {
15
15
  enumerable: true,
16
- get: function () { return chunkK47ZSAOM_js.getNxPluginInputs; }
16
+ get: function () { return chunkTWOXCXFE_js.getNxPluginInputs; }
17
17
  });
18
18
  Object.defineProperty(exports, "getNxTargetInputs", {
19
19
  enumerable: true,
20
- get: function () { return chunkK47ZSAOM_js.getNxTargetInputs; }
20
+ get: function () { return chunkTWOXCXFE_js.getNxTargetInputs; }
21
21
  });
@@ -1,4 +1,4 @@
1
- export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-35MFJYOO.mjs';
1
+ export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-ZYOL33SX.mjs';
2
2
  import '../../chunk-AGZ4P3AS.mjs';
3
3
  import '../../chunk-IC47MFKB.mjs';
4
4
  import '../../chunk-O6YSETKJ.mjs';
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var chunkG4H2HOVQ_js = require('../../chunk-G4H2HOVQ.js');
4
- require('../../chunk-K47ZSAOM.js');
3
+ var chunkWJP3FWAH_js = require('../../chunk-WJP3FWAH.js');
4
+ require('../../chunk-TWOXCXFE.js');
5
5
  require('../../chunk-NU3VTAH5.js');
6
6
  require('../../chunk-IQVSZEQ6.js');
7
7
  require('../../chunk-SHUYVCID.js');
@@ -10,5 +10,5 @@ require('../../chunk-SHUYVCID.js');
10
10
 
11
11
  Object.defineProperty(exports, "createNodesV2", {
12
12
  enumerable: true,
13
- get: function () { return chunkG4H2HOVQ_js.createNodesV2; }
13
+ get: function () { return chunkWJP3FWAH_js.createNodesV2; }
14
14
  });
@@ -1,5 +1,5 @@
1
- export { createNodesV2 } from '../../chunk-KUZFN4R7.mjs';
2
- import '../../chunk-35MFJYOO.mjs';
1
+ export { createNodesV2 } from '../../chunk-ELBUYWVF.mjs';
2
+ import '../../chunk-ZYOL33SX.mjs';
3
3
  import '../../chunk-AGZ4P3AS.mjs';
4
4
  import '../../chunk-IC47MFKB.mjs';
5
5
  import '../../chunk-O6YSETKJ.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.11.192",
3
+ "version": "0.11.193",
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.4.1",
199
- "powerlines": "^0.38.32"
199
+ "powerlines": "^0.38.33"
200
200
  },
201
201
  "devDependencies": {
202
202
  "@nx/workspace": "22.4.1",
@@ -210,5 +210,5 @@
210
210
  "publishConfig": { "access": "public" },
211
211
  "executors": "./executors.json",
212
212
  "generators": "./generators.json",
213
- "gitHead": "43093755bc5b18e29066b109f89a50a7e029ad4e"
213
+ "gitHead": "c1ad77652ce74df002fe3de9cb21c2002782021b"
214
214
  }