@powerlines/nx 0.10.2 → 0.10.4

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-3E654WM2.mjs → chunk-3PON7GN2.mjs} +1 -1
  3. package/dist/{chunk-MSR5HSGP.mjs → chunk-47DFWEJF.mjs} +49 -1
  4. package/dist/{chunk-QY2HEZSZ.mjs → chunk-4E5UMFKY.mjs} +1 -1
  5. package/dist/{chunk-5BPEG52U.js → chunk-CZ3MXYGK.js} +2 -2
  6. package/dist/{chunk-QEHHWZYD.mjs → chunk-DXBUB7CM.mjs} +1 -1
  7. package/dist/{chunk-SXA7B3TE.js → chunk-JIKEBFHR.js} +49 -1
  8. package/dist/{chunk-RPI3PNLJ.mjs → chunk-OUA5CYSM.mjs} +1 -1
  9. package/dist/{chunk-IS2MEDGI.js → chunk-QBH7UY6J.js} +2 -2
  10. package/dist/{chunk-H4ROBXJM.mjs → chunk-RIJVZWZO.mjs} +1 -1
  11. package/dist/{chunk-DODH7R3U.js → chunk-TGAG4BYS.js} +2 -2
  12. package/dist/{chunk-NFAKPYKX.js → chunk-VWGJOYIA.js} +2 -2
  13. package/dist/{chunk-MI5C7LYS.js → chunk-W53YCJUT.js} +2 -2
  14. package/dist/executors.js +13 -13
  15. package/dist/executors.mjs +6 -6
  16. package/dist/index.js +13 -13
  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,18 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.10.3](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.3) (11/07/2025)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.18.0**
10
+
11
+ ## [0.10.2](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.2) (11/07/2025)
12
+
13
+ ### Updated Dependencies
14
+
15
+ - Updated **powerlines** to **v0.17.0**
16
+
5
17
  ## [0.10.1](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.1) (11/05/2025)
6
18
 
7
19
  ### Updated Dependencies
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-MSR5HSGP.mjs';
1
+ import { withExecutor } from './chunk-47DFWEJF.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/docs/executor.ts
@@ -34,6 +34,7 @@ import { readJsonFile, readJsonFileSync } from '@stryke/fs/json';
34
34
  import { murmurhash } from '@stryke/hash/murmurhash';
35
35
  import { getUnique, getUniqueBy } from '@stryke/helpers/get-unique';
36
36
  import { omit } from '@stryke/helpers/omit';
37
+ import { StormJSON } from '@stryke/json/storm-json';
37
38
  import { appendPath } from '@stryke/path/append';
38
39
  import { findFilePath, findFileDotExtensionSafe, hasFileExtension, relativePath, findFileName } from '@stryke/path/file-path-fns';
39
40
  import { isAbsolutePath, isAbsolute } from '@stryke/path/is-type';
@@ -62,7 +63,6 @@ import ts2, { createProgram, createCompilerHost, getPreEmitDiagnostics, getLineA
62
63
  import { getPackageName, hasPackageVersion, getPackageVersion } from '@stryke/string-format/package';
63
64
  import { getObjectDiff } from '@donedeal0/superdiff';
64
65
  import { loadTsConfig } from '@stryke/fs/tsconfig';
65
- import { StormJSON } from '@stryke/json/storm-json';
66
66
  import { writeFile as writeFile$1 } from '@stryke/fs/write-file';
67
67
  import { isDevelopmentMode, isTestMode } from '@stryke/env/environment-checks';
68
68
  import { createVitePlugin, createEsbuildPlugin, createWebpackPlugin, createRolldownPlugin, createRollupPlugin, createRspackPlugin, createUnloaderPlugin } from 'unplugin';
@@ -1978,6 +1978,54 @@ ${result.errors.map((error) => ` [${error.severity}] ${error.message}${error.co
1978
1978
  await this.init(this.config.inlineConfig, options);
1979
1979
  }
1980
1980
  /**
1981
+ * A logging function for fatal messages
1982
+ *
1983
+ * @param message - The message to log.
1984
+ */
1985
+ fatal(message) {
1986
+ this.log(LogLevelLabel.FATAL, isString(message) ? message : StormJSON.stringify(message));
1987
+ }
1988
+ /**
1989
+ * A logging function for error messages
1990
+ *
1991
+ * @param message - The message to log.
1992
+ */
1993
+ error(message) {
1994
+ this.log(LogLevelLabel.ERROR, isString(message) ? message : StormJSON.stringify(message));
1995
+ }
1996
+ /**
1997
+ * A logging function for warning messages
1998
+ *
1999
+ * @param message - The message to log.
2000
+ */
2001
+ warn(message) {
2002
+ this.log(LogLevelLabel.WARN, isString(message) ? message : StormJSON.stringify(message));
2003
+ }
2004
+ /**
2005
+ * A logging function for informational messages
2006
+ *
2007
+ * @param message - The message to log.
2008
+ */
2009
+ info(message) {
2010
+ this.log(LogLevelLabel.INFO, isString(message) ? message : StormJSON.stringify(message));
2011
+ }
2012
+ /**
2013
+ * A logging function for debug messages
2014
+ *
2015
+ * @param message - The message to log.
2016
+ */
2017
+ debug(message) {
2018
+ this.log(LogLevelLabel.DEBUG, isString(message) ? message : StormJSON.stringify(message));
2019
+ }
2020
+ /**
2021
+ * A logging function for trace messages
2022
+ *
2023
+ * @param message - The message to log.
2024
+ */
2025
+ trace(message) {
2026
+ this.log(LogLevelLabel.TRACE, isString(message) ? message : StormJSON.stringify(message));
2027
+ }
2028
+ /**
1981
2029
  * Create a new logger instance
1982
2030
  *
1983
2031
  * @param name - The name to use for the logger instance
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-MSR5HSGP.mjs';
1
+ import { withExecutor } from './chunk-47DFWEJF.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 chunkSXA7B3TE_js = require('./chunk-SXA7B3TE.js');
3
+ var chunkJIKEBFHR_js = require('./chunk-JIKEBFHR.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 = chunkSXA7B3TE_js.withExecutor("docs", executorFn);
14
+ var executor = chunkJIKEBFHR_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-MSR5HSGP.mjs';
1
+ import { withExecutor } from './chunk-47DFWEJF.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
@@ -36,6 +36,7 @@ var json = require('@stryke/fs/json');
36
36
  var murmurhash = require('@stryke/hash/murmurhash');
37
37
  var getUnique = require('@stryke/helpers/get-unique');
38
38
  var omit = require('@stryke/helpers/omit');
39
+ var stormJson = require('@stryke/json/storm-json');
39
40
  var append = require('@stryke/path/append');
40
41
  var filePathFns = require('@stryke/path/file-path-fns');
41
42
  var isType = require('@stryke/path/is-type');
@@ -64,7 +65,6 @@ var ts2 = require('typescript');
64
65
  var _package = require('@stryke/string-format/package');
65
66
  var superdiff = require('@donedeal0/superdiff');
66
67
  var tsconfig = require('@stryke/fs/tsconfig');
67
- var stormJson = require('@stryke/json/storm-json');
68
68
  var writeFile$1 = require('@stryke/fs/write-file');
69
69
  var environmentChecks = require('@stryke/env/environment-checks');
70
70
  var unplugin = require('unplugin');
@@ -2007,6 +2007,54 @@ ${result.errors.map((error) => ` [${error.severity}] ${error.message}${error.co
2007
2007
  await this.init(this.config.inlineConfig, options);
2008
2008
  }
2009
2009
  /**
2010
+ * A logging function for fatal messages
2011
+ *
2012
+ * @param message - The message to log.
2013
+ */
2014
+ fatal(message) {
2015
+ this.log(types.LogLevelLabel.FATAL, isString.isString(message) ? message : stormJson.StormJSON.stringify(message));
2016
+ }
2017
+ /**
2018
+ * A logging function for error messages
2019
+ *
2020
+ * @param message - The message to log.
2021
+ */
2022
+ error(message) {
2023
+ this.log(types.LogLevelLabel.ERROR, isString.isString(message) ? message : stormJson.StormJSON.stringify(message));
2024
+ }
2025
+ /**
2026
+ * A logging function for warning messages
2027
+ *
2028
+ * @param message - The message to log.
2029
+ */
2030
+ warn(message) {
2031
+ this.log(types.LogLevelLabel.WARN, isString.isString(message) ? message : stormJson.StormJSON.stringify(message));
2032
+ }
2033
+ /**
2034
+ * A logging function for informational messages
2035
+ *
2036
+ * @param message - The message to log.
2037
+ */
2038
+ info(message) {
2039
+ this.log(types.LogLevelLabel.INFO, isString.isString(message) ? message : stormJson.StormJSON.stringify(message));
2040
+ }
2041
+ /**
2042
+ * A logging function for debug messages
2043
+ *
2044
+ * @param message - The message to log.
2045
+ */
2046
+ debug(message) {
2047
+ this.log(types.LogLevelLabel.DEBUG, isString.isString(message) ? message : stormJson.StormJSON.stringify(message));
2048
+ }
2049
+ /**
2050
+ * A logging function for trace messages
2051
+ *
2052
+ * @param message - The message to log.
2053
+ */
2054
+ trace(message) {
2055
+ this.log(types.LogLevelLabel.TRACE, isString.isString(message) ? message : stormJson.StormJSON.stringify(message));
2056
+ }
2057
+ /**
2010
2058
  * Create a new logger instance
2011
2059
  *
2012
2060
  * @param name - The name to use for the logger instance
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-MSR5HSGP.mjs';
1
+ import { withExecutor } from './chunk-47DFWEJF.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 chunkSXA7B3TE_js = require('./chunk-SXA7B3TE.js');
3
+ var chunkJIKEBFHR_js = require('./chunk-JIKEBFHR.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 = chunkSXA7B3TE_js.withExecutor("clean", executorFn);
14
+ var executor = chunkJIKEBFHR_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-MSR5HSGP.mjs';
1
+ import { withExecutor } from './chunk-47DFWEJF.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 chunkSXA7B3TE_js = require('./chunk-SXA7B3TE.js');
3
+ var chunkJIKEBFHR_js = require('./chunk-JIKEBFHR.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 = chunkSXA7B3TE_js.withExecutor("build", executorFn);
22
+ var executor = chunkJIKEBFHR_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 chunkSXA7B3TE_js = require('./chunk-SXA7B3TE.js');
3
+ var chunkJIKEBFHR_js = require('./chunk-JIKEBFHR.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 = chunkSXA7B3TE_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkJIKEBFHR_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 chunkSXA7B3TE_js = require('./chunk-SXA7B3TE.js');
3
+ var chunkJIKEBFHR_js = require('./chunk-JIKEBFHR.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 = chunkSXA7B3TE_js.withExecutor("lint", executorFn);
14
+ var executor = chunkJIKEBFHR_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
package/dist/executors.js CHANGED
@@ -1,34 +1,34 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkIS2MEDGI_js = require('./chunk-IS2MEDGI.js');
5
- var chunk5BPEG52U_js = require('./chunk-5BPEG52U.js');
6
- var chunkMI5C7LYS_js = require('./chunk-MI5C7LYS.js');
7
- var chunkNFAKPYKX_js = require('./chunk-NFAKPYKX.js');
8
- var chunkDODH7R3U_js = require('./chunk-DODH7R3U.js');
9
- require('./chunk-SXA7B3TE.js');
4
+ var chunkTGAG4BYS_js = require('./chunk-TGAG4BYS.js');
5
+ var chunkCZ3MXYGK_js = require('./chunk-CZ3MXYGK.js');
6
+ var chunkW53YCJUT_js = require('./chunk-W53YCJUT.js');
7
+ var chunkVWGJOYIA_js = require('./chunk-VWGJOYIA.js');
8
+ var chunkQBH7UY6J_js = require('./chunk-QBH7UY6J.js');
9
+ require('./chunk-JIKEBFHR.js');
10
10
  require('./chunk-UOTRU26N.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
13
13
 
14
14
 
15
- Object.defineProperty(exports, "clean", {
15
+ Object.defineProperty(exports, "build", {
16
16
  enumerable: true,
17
- get: function () { return chunkIS2MEDGI_js.executor_default; }
17
+ get: function () { return chunkTGAG4BYS_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "docs", {
20
20
  enumerable: true,
21
- get: function () { return chunk5BPEG52U_js.executor_default; }
21
+ get: function () { return chunkCZ3MXYGK_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "lint", {
24
24
  enumerable: true,
25
- get: function () { return chunkMI5C7LYS_js.executor_default; }
25
+ get: function () { return chunkW53YCJUT_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "prepare", {
28
28
  enumerable: true,
29
- get: function () { return chunkNFAKPYKX_js.executor_default; }
29
+ get: function () { return chunkVWGJOYIA_js.executor_default; }
30
30
  });
31
- Object.defineProperty(exports, "build", {
31
+ Object.defineProperty(exports, "clean", {
32
32
  enumerable: true,
33
- get: function () { return chunkDODH7R3U_js.executor_default; }
33
+ get: function () { return chunkQBH7UY6J_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as clean } from './chunk-QEHHWZYD.mjs';
3
- export { executor_default as docs } from './chunk-3E654WM2.mjs';
4
- export { executor_default as lint } from './chunk-RPI3PNLJ.mjs';
5
- export { executor_default as prepare } from './chunk-QY2HEZSZ.mjs';
6
- export { executor_default as build } from './chunk-H4ROBXJM.mjs';
7
- import './chunk-MSR5HSGP.mjs';
2
+ export { executor_default as build } from './chunk-RIJVZWZO.mjs';
3
+ export { executor_default as docs } from './chunk-3PON7GN2.mjs';
4
+ export { executor_default as lint } from './chunk-OUA5CYSM.mjs';
5
+ export { executor_default as prepare } from './chunk-4E5UMFKY.mjs';
6
+ export { executor_default as clean } from './chunk-DXBUB7CM.mjs';
7
+ import './chunk-47DFWEJF.mjs';
8
8
  import './chunk-DVGRVHRD.mjs';
9
9
  import './chunk-O6YSETKJ.mjs';
package/dist/index.js CHANGED
@@ -1,35 +1,35 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkIS2MEDGI_js = require('./chunk-IS2MEDGI.js');
5
- var chunk5BPEG52U_js = require('./chunk-5BPEG52U.js');
6
- var chunkMI5C7LYS_js = require('./chunk-MI5C7LYS.js');
7
- var chunkNFAKPYKX_js = require('./chunk-NFAKPYKX.js');
4
+ var chunkTGAG4BYS_js = require('./chunk-TGAG4BYS.js');
5
+ var chunkCZ3MXYGK_js = require('./chunk-CZ3MXYGK.js');
6
+ var chunkW53YCJUT_js = require('./chunk-W53YCJUT.js');
7
+ var chunkVWGJOYIA_js = require('./chunk-VWGJOYIA.js');
8
8
  require('./chunk-N2YKXZ5R.js');
9
9
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
10
10
  var chunk67ALH5AX_js = require('./chunk-67ALH5AX.js');
11
- var chunkDODH7R3U_js = require('./chunk-DODH7R3U.js');
12
- require('./chunk-SXA7B3TE.js');
11
+ var chunkQBH7UY6J_js = require('./chunk-QBH7UY6J.js');
12
+ require('./chunk-JIKEBFHR.js');
13
13
  require('./chunk-UOTRU26N.js');
14
14
  require('./chunk-SHUYVCID.js');
15
15
 
16
16
 
17
17
 
18
- Object.defineProperty(exports, "clean", {
18
+ Object.defineProperty(exports, "build", {
19
19
  enumerable: true,
20
- get: function () { return chunkIS2MEDGI_js.executor_default; }
20
+ get: function () { return chunkTGAG4BYS_js.executor_default; }
21
21
  });
22
22
  Object.defineProperty(exports, "docs", {
23
23
  enumerable: true,
24
- get: function () { return chunk5BPEG52U_js.executor_default; }
24
+ get: function () { return chunkCZ3MXYGK_js.executor_default; }
25
25
  });
26
26
  Object.defineProperty(exports, "lint", {
27
27
  enumerable: true,
28
- get: function () { return chunkMI5C7LYS_js.executor_default; }
28
+ get: function () { return chunkW53YCJUT_js.executor_default; }
29
29
  });
30
30
  Object.defineProperty(exports, "prepare", {
31
31
  enumerable: true,
32
- get: function () { return chunkNFAKPYKX_js.executor_default; }
32
+ get: function () { return chunkVWGJOYIA_js.executor_default; }
33
33
  });
34
34
  Object.defineProperty(exports, "sync", {
35
35
  enumerable: true,
@@ -47,7 +47,7 @@ Object.defineProperty(exports, "name", {
47
47
  enumerable: true,
48
48
  get: function () { return chunk67ALH5AX_js.name; }
49
49
  });
50
- Object.defineProperty(exports, "build", {
50
+ Object.defineProperty(exports, "clean", {
51
51
  enumerable: true,
52
- get: function () { return chunkDODH7R3U_js.executor_default; }
52
+ get: function () { return chunkQBH7UY6J_js.executor_default; }
53
53
  });
package/dist/index.mjs CHANGED
@@ -1,12 +1,12 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as clean } from './chunk-QEHHWZYD.mjs';
3
- export { executor_default as docs } from './chunk-3E654WM2.mjs';
4
- export { executor_default as lint } from './chunk-RPI3PNLJ.mjs';
5
- export { executor_default as prepare } from './chunk-QY2HEZSZ.mjs';
2
+ export { executor_default as build } from './chunk-RIJVZWZO.mjs';
3
+ export { executor_default as docs } from './chunk-3PON7GN2.mjs';
4
+ export { executor_default as lint } from './chunk-OUA5CYSM.mjs';
5
+ export { executor_default as prepare } from './chunk-4E5UMFKY.mjs';
6
6
  import './chunk-23KFTIT2.mjs';
7
7
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
8
8
  export { createNodesV2, name } from './chunk-KBRKYARM.mjs';
9
- export { executor_default as build } from './chunk-H4ROBXJM.mjs';
10
- import './chunk-MSR5HSGP.mjs';
9
+ export { executor_default as clean } from './chunk-DXBUB7CM.mjs';
10
+ import './chunk-47DFWEJF.mjs';
11
11
  import './chunk-DVGRVHRD.mjs';
12
12
  import './chunk-O6YSETKJ.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkSXA7B3TE_js = require('../../chunk-SXA7B3TE.js');
3
+ var chunkJIKEBFHR_js = require('../../chunk-JIKEBFHR.js');
4
4
  require('../../chunk-UOTRU26N.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 chunkSXA7B3TE_js.withExecutor; }
11
+ get: function () { return chunkJIKEBFHR_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-MSR5HSGP.mjs';
1
+ export { withExecutor } from '../../chunk-47DFWEJF.mjs';
2
2
  import '../../chunk-DVGRVHRD.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 chunkDODH7R3U_js = require('../../../chunk-DODH7R3U.js');
6
- require('../../../chunk-SXA7B3TE.js');
5
+ var chunkTGAG4BYS_js = require('../../../chunk-TGAG4BYS.js');
6
+ require('../../../chunk-JIKEBFHR.js');
7
7
  require('../../../chunk-UOTRU26N.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 chunkDODH7R3U_js.executor_default; }
14
+ get: function () { return chunkTGAG4BYS_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkDODH7R3U_js.executorFn; }
18
+ get: function () { return chunkTGAG4BYS_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-H4ROBXJM.mjs';
2
- import '../../../chunk-MSR5HSGP.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-RIJVZWZO.mjs';
2
+ import '../../../chunk-47DFWEJF.mjs';
3
3
  import '../../../chunk-DVGRVHRD.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 chunkIS2MEDGI_js = require('../../../chunk-IS2MEDGI.js');
6
- require('../../../chunk-SXA7B3TE.js');
5
+ var chunkQBH7UY6J_js = require('../../../chunk-QBH7UY6J.js');
6
+ require('../../../chunk-JIKEBFHR.js');
7
7
  require('../../../chunk-UOTRU26N.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 chunkIS2MEDGI_js.executor_default; }
14
+ get: function () { return chunkQBH7UY6J_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkIS2MEDGI_js.executorFn; }
18
+ get: function () { return chunkQBH7UY6J_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-QEHHWZYD.mjs';
2
- import '../../../chunk-MSR5HSGP.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-DXBUB7CM.mjs';
2
+ import '../../../chunk-47DFWEJF.mjs';
3
3
  import '../../../chunk-DVGRVHRD.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 chunk5BPEG52U_js = require('../../../chunk-5BPEG52U.js');
6
- require('../../../chunk-SXA7B3TE.js');
5
+ var chunkCZ3MXYGK_js = require('../../../chunk-CZ3MXYGK.js');
6
+ require('../../../chunk-JIKEBFHR.js');
7
7
  require('../../../chunk-UOTRU26N.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 chunk5BPEG52U_js.executor_default; }
14
+ get: function () { return chunkCZ3MXYGK_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk5BPEG52U_js.executorFn; }
18
+ get: function () { return chunkCZ3MXYGK_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-3E654WM2.mjs';
2
- import '../../../chunk-MSR5HSGP.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-3PON7GN2.mjs';
2
+ import '../../../chunk-47DFWEJF.mjs';
3
3
  import '../../../chunk-DVGRVHRD.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 chunkMI5C7LYS_js = require('../../../chunk-MI5C7LYS.js');
6
- require('../../../chunk-SXA7B3TE.js');
5
+ var chunkW53YCJUT_js = require('../../../chunk-W53YCJUT.js');
6
+ require('../../../chunk-JIKEBFHR.js');
7
7
  require('../../../chunk-UOTRU26N.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 chunkMI5C7LYS_js.executor_default; }
14
+ get: function () { return chunkW53YCJUT_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkMI5C7LYS_js.executorFn; }
18
+ get: function () { return chunkW53YCJUT_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-RPI3PNLJ.mjs';
2
- import '../../../chunk-MSR5HSGP.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-OUA5CYSM.mjs';
2
+ import '../../../chunk-47DFWEJF.mjs';
3
3
  import '../../../chunk-DVGRVHRD.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 chunkNFAKPYKX_js = require('../../../chunk-NFAKPYKX.js');
6
- require('../../../chunk-SXA7B3TE.js');
5
+ var chunkVWGJOYIA_js = require('../../../chunk-VWGJOYIA.js');
6
+ require('../../../chunk-JIKEBFHR.js');
7
7
  require('../../../chunk-UOTRU26N.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 chunkNFAKPYKX_js.executor_default; }
14
+ get: function () { return chunkVWGJOYIA_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkNFAKPYKX_js.executorFn; }
18
+ get: function () { return chunkVWGJOYIA_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-QY2HEZSZ.mjs';
2
- import '../../../chunk-MSR5HSGP.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-4E5UMFKY.mjs';
2
+ import '../../../chunk-47DFWEJF.mjs';
3
3
  import '../../../chunk-DVGRVHRD.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.2",
3
+ "version": "0.10.4",
4
4
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -154,7 +154,7 @@
154
154
  "defu": "^6.1.4",
155
155
  "jiti": "^2.6.1",
156
156
  "nx": "^22.0.2",
157
- "powerlines": "^0.17.0"
157
+ "powerlines": "^0.19.0"
158
158
  },
159
159
  "devDependencies": {
160
160
  "@nx/workspace": "^22.0.2",
@@ -168,5 +168,5 @@
168
168
  "publishConfig": { "access": "public" },
169
169
  "executors": "./executors.json",
170
170
  "generators": "./generators.json",
171
- "gitHead": "27064ac269a2d34c5b9371105cdd58bf6ebe85b4"
171
+ "gitHead": "8ee43c2a7eebce6b221aa572553f4296c87fce76"
172
172
  }