@powerlines/nx 0.11.127 → 0.11.128

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 (32) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/{chunk-E5JLGW6Y.js → chunk-36VX6ICO.js} +2 -2
  3. package/dist/{chunk-UHUBYHC5.js → chunk-4QMX7ZWH.js} +37 -11
  4. package/dist/{chunk-LM4Z5ESW.mjs → chunk-7DMJOQ2K.mjs} +1 -1
  5. package/dist/{chunk-IGOI3JVE.mjs → chunk-DBTQDN2C.mjs} +37 -11
  6. package/dist/{chunk-LOTVN4ME.mjs → chunk-FWI4YEFU.mjs} +1 -1
  7. package/dist/{chunk-KKAINAQ4.js → chunk-GJQXGFHV.js} +2 -2
  8. package/dist/{chunk-S5T5BM2U.mjs → chunk-IJWBJS6B.mjs} +1 -1
  9. package/dist/{chunk-TTWSRFD2.mjs → chunk-KH3CLXZY.mjs} +1 -1
  10. package/dist/{chunk-7AZLH52Q.js → chunk-NQ7PNOBQ.js} +2 -2
  11. package/dist/{chunk-562NI5FM.mjs → chunk-OHK3W2CQ.mjs} +1 -1
  12. package/dist/{chunk-56MCJH3J.js → chunk-P2HS5DSB.js} +2 -2
  13. package/dist/{chunk-B73RFLCU.js → chunk-XNVKXLZI.js} +2 -2
  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/dist/src/helpers/plugin-utilities.d.mts +1 -1
  31. package/dist/src/helpers/plugin-utilities.d.ts +1 -1
  32. 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.127](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.127) (01/21/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.37.71**
10
+
5
11
  ## [0.11.126](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.126) (01/21/2026)
6
12
 
7
13
  ### Updated Dependencies
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkUHUBYHC5_js = require('./chunk-UHUBYHC5.js');
3
+ var chunk4QMX7ZWH_js = require('./chunk-4QMX7ZWH.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 = chunkUHUBYHC5_js.withExecutor("build", executorFn);
22
+ var executor = chunk4QMX7ZWH_js.withExecutor("build", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -107,11 +107,11 @@ var $__namespace = /*#__PURE__*/_interopNamespace($);
107
107
 
108
108
  // ../powerlines/package.json
109
109
  var package_default = {
110
- version: "0.37.70"};
110
+ version: "0.37.71"};
111
111
 
112
112
  // ../powerlines/src/plugin-utils/modules.ts
113
113
  function isBuiltinModule(context, moduleName) {
114
- const prefix = context.config.output?.builtinPrefix || context.config?.framework || "powerlines";
114
+ const prefix = context.config?.framework || "powerlines";
115
115
  return moduleName.startsWith(`${prefix.replace(/:$/, "")}:`) || Object.keys(context.fs.metadata).filter((key) => context.fs.metadata[key]?.type === "builtin").includes(moduleName);
116
116
  }
117
117
  chunkSHUYVCID_js.__name(isBuiltinModule, "isBuiltinModule");
@@ -378,7 +378,7 @@ async function emitBuiltinTypes(context, files) {
378
378
  context.trace(`Processing emitted type declaration file: ${emittedFile.filePath}`);
379
379
  const filePath = append.appendPath(emittedFile.filePath, context.workspaceConfig.workspaceRoot);
380
380
  if (!filePath.endsWith(".map") && filePathFns.findFileName(filePath) !== "tsconfig.tsbuildinfo" && isParentPath.isParentPath(filePath, context.builtinsPath)) {
381
- const moduleId = `${context.config.output?.builtinPrefix || context.config?.framework || "powerlines"}:${replace.replaceExtension(replace.replacePath(filePath, context.builtinsPath), "", {
381
+ const moduleId = `${context.config.framework}:${replace.replaceExtension(replace.replacePath(filePath, context.builtinsPath), "", {
382
382
  fullExtension: true
383
383
  })}`;
384
384
  const moduleComment = emittedFile.text.match(getModuleCommentBlockRegex(moduleId))?.find((comment) => isSetString.isSetString(comment?.trim()));
@@ -1829,7 +1829,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
1829
1829
  if (isParentPath.isParentPath(normalized, this.#context.builtinsPath)) {
1830
1830
  normalized = replace.replacePath(normalized, this.#context.builtinsPath);
1831
1831
  }
1832
- return normalizeId(normalized, this.#context.config.output.builtinPrefix);
1832
+ return normalizeId(normalized, this.#context.config.framework);
1833
1833
  }
1834
1834
  /**
1835
1835
  * Normalizes a given path by resolving it against the project root, workspace root, and built-ins path.
@@ -1838,7 +1838,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
1838
1838
  * @returns The normalized path.
1839
1839
  */
1840
1840
  #normalizePath(path) {
1841
- return normalizePath(path.includes("{") || path.includes("}") ? replacePathTokens(this.#context, path) : path, this.#context.builtinsPath, this.#context.config.output.builtinPrefix);
1841
+ return normalizePath(path.includes("{") || path.includes("}") ? replacePathTokens(this.#context, path) : path, this.#context.builtinsPath, this.#context.config.framework);
1842
1842
  }
1843
1843
  /**
1844
1844
  * Gets the storage adapter and relative key for a given key.
@@ -2875,8 +2875,7 @@ var PowerlinesContext = class _PowerlinesContext {
2875
2875
  }, {
2876
2876
  output: config.framework ? {
2877
2877
  artifactsPath: `.${config.framework ?? "powerlines"}`,
2878
- dts: join.joinPaths(config.root ?? this.config.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
2879
- builtinPrefix: config.framework ?? "powerlines"
2878
+ dts: join.joinPaths(config.root ?? this.config.projectRoot, `${config.framework ?? "powerlines"}.d.ts`)
2880
2879
  } : {}
2881
2880
  });
2882
2881
  }
@@ -3110,6 +3109,29 @@ var PowerlinesContext = class _PowerlinesContext {
3110
3109
  return Object.values(this.fs.metadata).filter((meta) => meta && meta.type === "builtin").map((meta) => meta?.id).filter(Boolean);
3111
3110
  }
3112
3111
  /**
3112
+ * The alias mappings for the project used during module resolution
3113
+ *
3114
+ * @remarks
3115
+ * This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
3116
+ */
3117
+ get alias() {
3118
+ return this.builtins.reduce((ret, id) => {
3119
+ const moduleId = `${this.config?.framework || "powerlines"}:${id.replace(/^.*?:/, "")}`;
3120
+ if (!ret[moduleId]) {
3121
+ const path = this.fs.paths[id];
3122
+ if (path) {
3123
+ ret[moduleId] = path;
3124
+ }
3125
+ }
3126
+ return ret;
3127
+ }, this.config.build.alias ? Array.isArray(this.config.build.alias) ? this.config.build.alias.reduce((ret, alias) => {
3128
+ if (!ret[alias.find.toString()]) {
3129
+ ret[alias.find.toString()] = alias.replacement;
3130
+ }
3131
+ return ret;
3132
+ }, {}) : this.config.build.alias : {});
3133
+ }
3134
+ /**
3113
3135
  * The {@link Project} instance used for type reflection and module manipulation
3114
3136
  *
3115
3137
  * @see https://ts-morph.com/
@@ -3681,7 +3703,8 @@ var PowerlinesContext = class _PowerlinesContext {
3681
3703
  skipCache: config.skipCache ?? this.config.skipCache ?? false,
3682
3704
  configFile: config.configFile ?? this.config.configFile,
3683
3705
  framework: config.framework ?? this.config.framework ?? "powerlines",
3684
- command: this.config.inlineConfig?.command
3706
+ command: this.config.inlineConfig?.command,
3707
+ alias: this.config.build?.alias ?? config.build?.alias
3685
3708
  };
3686
3709
  if (configCache.has(cacheKey)) {
3687
3710
  const result = configCache.get(cacheKey);
@@ -3705,8 +3728,12 @@ var PowerlinesContext = class _PowerlinesContext {
3705
3728
  projectRoot: cacheKey.projectRoot,
3706
3729
  cacheDir: this.cachePath,
3707
3730
  mode: cacheKey.mode,
3708
- logLevel: config.logLevel || this.config?.logLevel || this.workspaceConfig.logLevel || "info",
3709
- skipCache: cacheKey.skipCache
3731
+ logLevel: config.logLevel || this.config.logLevel || this.workspaceConfig.logLevel || "info",
3732
+ skipCache: cacheKey.skipCache,
3733
+ alias: this.config.build?.alias ? Array.isArray(this.config.build.alias) ? this.config.build.alias.reduce((ret, alias) => {
3734
+ ret[alias.find.toString()] = alias.replacement;
3735
+ return ret;
3736
+ }, {}) : this.config.build.alias : {}
3710
3737
  });
3711
3738
  const userConfig = await chunkDQI2I5KK_js.loadUserConfigFile(cacheKey.projectRoot, this.workspaceConfig.workspaceRoot, this.resolver, cacheKey.command, cacheKey.mode, cacheKey.configFile, cacheKey.framework);
3712
3739
  this.mergeUserConfig(userConfig.config);
@@ -3739,7 +3766,6 @@ var PowerlinesContext = class _PowerlinesContext {
3739
3766
  outputPath: cacheKey.projectRoot ? join.joinPaths(this.workspaceConfig?.directories?.build || "dist", cacheKey.projectRoot) : this.workspaceConfig?.directories?.build || "dist",
3740
3767
  artifactsPath: `.${config.framework ?? "powerlines"}`,
3741
3768
  dts: join.joinPaths(cacheKey.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
3742
- builtinPrefix: config.framework ?? "powerlines",
3743
3769
  assets: [
3744
3770
  {
3745
3771
  glob: "LICENSE"
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-IGOI3JVE.mjs';
1
+ import { withExecutor } from './chunk-DBTQDN2C.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -78,11 +78,11 @@ import { resolve } from 'node:path';
78
78
 
79
79
  // ../powerlines/package.json
80
80
  var package_default = {
81
- version: "0.37.70"};
81
+ version: "0.37.71"};
82
82
 
83
83
  // ../powerlines/src/plugin-utils/modules.ts
84
84
  function isBuiltinModule(context, moduleName) {
85
- const prefix = context.config.output?.builtinPrefix || context.config?.framework || "powerlines";
85
+ const prefix = context.config?.framework || "powerlines";
86
86
  return moduleName.startsWith(`${prefix.replace(/:$/, "")}:`) || Object.keys(context.fs.metadata).filter((key) => context.fs.metadata[key]?.type === "builtin").includes(moduleName);
87
87
  }
88
88
  __name(isBuiltinModule, "isBuiltinModule");
@@ -349,7 +349,7 @@ async function emitBuiltinTypes(context, files) {
349
349
  context.trace(`Processing emitted type declaration file: ${emittedFile.filePath}`);
350
350
  const filePath = appendPath(emittedFile.filePath, context.workspaceConfig.workspaceRoot);
351
351
  if (!filePath.endsWith(".map") && findFileName(filePath) !== "tsconfig.tsbuildinfo" && isParentPath(filePath, context.builtinsPath)) {
352
- const moduleId = `${context.config.output?.builtinPrefix || context.config?.framework || "powerlines"}:${replaceExtension(replacePath(filePath, context.builtinsPath), "", {
352
+ const moduleId = `${context.config.framework}:${replaceExtension(replacePath(filePath, context.builtinsPath), "", {
353
353
  fullExtension: true
354
354
  })}`;
355
355
  const moduleComment = emittedFile.text.match(getModuleCommentBlockRegex(moduleId))?.find((comment) => isSetString(comment?.trim()));
@@ -1800,7 +1800,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
1800
1800
  if (isParentPath(normalized, this.#context.builtinsPath)) {
1801
1801
  normalized = replacePath(normalized, this.#context.builtinsPath);
1802
1802
  }
1803
- return normalizeId(normalized, this.#context.config.output.builtinPrefix);
1803
+ return normalizeId(normalized, this.#context.config.framework);
1804
1804
  }
1805
1805
  /**
1806
1806
  * Normalizes a given path by resolving it against the project root, workspace root, and built-ins path.
@@ -1809,7 +1809,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
1809
1809
  * @returns The normalized path.
1810
1810
  */
1811
1811
  #normalizePath(path) {
1812
- return normalizePath(path.includes("{") || path.includes("}") ? replacePathTokens(this.#context, path) : path, this.#context.builtinsPath, this.#context.config.output.builtinPrefix);
1812
+ return normalizePath(path.includes("{") || path.includes("}") ? replacePathTokens(this.#context, path) : path, this.#context.builtinsPath, this.#context.config.framework);
1813
1813
  }
1814
1814
  /**
1815
1815
  * Gets the storage adapter and relative key for a given key.
@@ -2846,8 +2846,7 @@ var PowerlinesContext = class _PowerlinesContext {
2846
2846
  }, {
2847
2847
  output: config.framework ? {
2848
2848
  artifactsPath: `.${config.framework ?? "powerlines"}`,
2849
- dts: joinPaths(config.root ?? this.config.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
2850
- builtinPrefix: config.framework ?? "powerlines"
2849
+ dts: joinPaths(config.root ?? this.config.projectRoot, `${config.framework ?? "powerlines"}.d.ts`)
2851
2850
  } : {}
2852
2851
  });
2853
2852
  }
@@ -3081,6 +3080,29 @@ var PowerlinesContext = class _PowerlinesContext {
3081
3080
  return Object.values(this.fs.metadata).filter((meta) => meta && meta.type === "builtin").map((meta) => meta?.id).filter(Boolean);
3082
3081
  }
3083
3082
  /**
3083
+ * The alias mappings for the project used during module resolution
3084
+ *
3085
+ * @remarks
3086
+ * This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
3087
+ */
3088
+ get alias() {
3089
+ return this.builtins.reduce((ret, id) => {
3090
+ const moduleId = `${this.config?.framework || "powerlines"}:${id.replace(/^.*?:/, "")}`;
3091
+ if (!ret[moduleId]) {
3092
+ const path = this.fs.paths[id];
3093
+ if (path) {
3094
+ ret[moduleId] = path;
3095
+ }
3096
+ }
3097
+ return ret;
3098
+ }, this.config.build.alias ? Array.isArray(this.config.build.alias) ? this.config.build.alias.reduce((ret, alias) => {
3099
+ if (!ret[alias.find.toString()]) {
3100
+ ret[alias.find.toString()] = alias.replacement;
3101
+ }
3102
+ return ret;
3103
+ }, {}) : this.config.build.alias : {});
3104
+ }
3105
+ /**
3084
3106
  * The {@link Project} instance used for type reflection and module manipulation
3085
3107
  *
3086
3108
  * @see https://ts-morph.com/
@@ -3652,7 +3674,8 @@ var PowerlinesContext = class _PowerlinesContext {
3652
3674
  skipCache: config.skipCache ?? this.config.skipCache ?? false,
3653
3675
  configFile: config.configFile ?? this.config.configFile,
3654
3676
  framework: config.framework ?? this.config.framework ?? "powerlines",
3655
- command: this.config.inlineConfig?.command
3677
+ command: this.config.inlineConfig?.command,
3678
+ alias: this.config.build?.alias ?? config.build?.alias
3656
3679
  };
3657
3680
  if (configCache.has(cacheKey)) {
3658
3681
  const result = configCache.get(cacheKey);
@@ -3676,8 +3699,12 @@ var PowerlinesContext = class _PowerlinesContext {
3676
3699
  projectRoot: cacheKey.projectRoot,
3677
3700
  cacheDir: this.cachePath,
3678
3701
  mode: cacheKey.mode,
3679
- logLevel: config.logLevel || this.config?.logLevel || this.workspaceConfig.logLevel || "info",
3680
- skipCache: cacheKey.skipCache
3702
+ logLevel: config.logLevel || this.config.logLevel || this.workspaceConfig.logLevel || "info",
3703
+ skipCache: cacheKey.skipCache,
3704
+ alias: this.config.build?.alias ? Array.isArray(this.config.build.alias) ? this.config.build.alias.reduce((ret, alias) => {
3705
+ ret[alias.find.toString()] = alias.replacement;
3706
+ return ret;
3707
+ }, {}) : this.config.build.alias : {}
3681
3708
  });
3682
3709
  const userConfig = await loadUserConfigFile(cacheKey.projectRoot, this.workspaceConfig.workspaceRoot, this.resolver, cacheKey.command, cacheKey.mode, cacheKey.configFile, cacheKey.framework);
3683
3710
  this.mergeUserConfig(userConfig.config);
@@ -3710,7 +3737,6 @@ var PowerlinesContext = class _PowerlinesContext {
3710
3737
  outputPath: cacheKey.projectRoot ? joinPaths(this.workspaceConfig?.directories?.build || "dist", cacheKey.projectRoot) : this.workspaceConfig?.directories?.build || "dist",
3711
3738
  artifactsPath: `.${config.framework ?? "powerlines"}`,
3712
3739
  dts: joinPaths(cacheKey.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
3713
- builtinPrefix: config.framework ?? "powerlines",
3714
3740
  assets: [
3715
3741
  {
3716
3742
  glob: "LICENSE"
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-IGOI3JVE.mjs';
1
+ import { withExecutor } from './chunk-DBTQDN2C.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 chunkUHUBYHC5_js = require('./chunk-UHUBYHC5.js');
3
+ var chunk4QMX7ZWH_js = require('./chunk-4QMX7ZWH.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 = chunkUHUBYHC5_js.withExecutor("clean", executorFn);
14
+ var executor = chunk4QMX7ZWH_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-IGOI3JVE.mjs';
1
+ import { withExecutor } from './chunk-DBTQDN2C.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-IGOI3JVE.mjs';
1
+ import { withExecutor } from './chunk-DBTQDN2C.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 chunkUHUBYHC5_js = require('./chunk-UHUBYHC5.js');
3
+ var chunk4QMX7ZWH_js = require('./chunk-4QMX7ZWH.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 = chunkUHUBYHC5_js.withExecutor("prepare", executorFn);
22
+ var executor = chunk4QMX7ZWH_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-IGOI3JVE.mjs';
1
+ import { withExecutor } from './chunk-DBTQDN2C.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 chunkUHUBYHC5_js = require('./chunk-UHUBYHC5.js');
3
+ var chunk4QMX7ZWH_js = require('./chunk-4QMX7ZWH.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 = chunkUHUBYHC5_js.withExecutor("lint", executorFn);
14
+ var executor = chunk4QMX7ZWH_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 chunkUHUBYHC5_js = require('./chunk-UHUBYHC5.js');
3
+ var chunk4QMX7ZWH_js = require('./chunk-4QMX7ZWH.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 = chunkUHUBYHC5_js.withExecutor("docs", executorFn);
14
+ var executor = chunk4QMX7ZWH_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
package/dist/executors.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunk56MCJH3J_js = require('./chunk-56MCJH3J.js');
5
- var chunk7AZLH52Q_js = require('./chunk-7AZLH52Q.js');
6
- var chunkE5JLGW6Y_js = require('./chunk-E5JLGW6Y.js');
7
- var chunkKKAINAQ4_js = require('./chunk-KKAINAQ4.js');
8
- var chunkB73RFLCU_js = require('./chunk-B73RFLCU.js');
9
- require('./chunk-UHUBYHC5.js');
4
+ var chunkP2HS5DSB_js = require('./chunk-P2HS5DSB.js');
5
+ var chunkNQ7PNOBQ_js = require('./chunk-NQ7PNOBQ.js');
6
+ var chunk36VX6ICO_js = require('./chunk-36VX6ICO.js');
7
+ var chunkGJQXGFHV_js = require('./chunk-GJQXGFHV.js');
8
+ var chunkXNVKXLZI_js = require('./chunk-XNVKXLZI.js');
9
+ require('./chunk-4QMX7ZWH.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 chunk56MCJH3J_js.executor_default; }
17
+ get: function () { return chunkP2HS5DSB_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "prepare", {
20
20
  enumerable: true,
21
- get: function () { return chunk7AZLH52Q_js.executor_default; }
21
+ get: function () { return chunkNQ7PNOBQ_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "build", {
24
24
  enumerable: true,
25
- get: function () { return chunkE5JLGW6Y_js.executor_default; }
25
+ get: function () { return chunk36VX6ICO_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "clean", {
28
28
  enumerable: true,
29
- get: function () { return chunkKKAINAQ4_js.executor_default; }
29
+ get: function () { return chunkGJQXGFHV_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "docs", {
32
32
  enumerable: true,
33
- get: function () { return chunkB73RFLCU_js.executor_default; }
33
+ get: function () { return chunkXNVKXLZI_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-LM4Z5ESW.mjs';
3
- export { executor_default as prepare } from './chunk-TTWSRFD2.mjs';
4
- export { executor_default as build } from './chunk-562NI5FM.mjs';
5
- export { executor_default as clean } from './chunk-S5T5BM2U.mjs';
6
- export { executor_default as docs } from './chunk-LOTVN4ME.mjs';
7
- import './chunk-IGOI3JVE.mjs';
2
+ export { executor_default as lint } from './chunk-7DMJOQ2K.mjs';
3
+ export { executor_default as prepare } from './chunk-KH3CLXZY.mjs';
4
+ export { executor_default as build } from './chunk-OHK3W2CQ.mjs';
5
+ export { executor_default as clean } from './chunk-IJWBJS6B.mjs';
6
+ export { executor_default as docs } from './chunk-FWI4YEFU.mjs';
7
+ import './chunk-DBTQDN2C.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 chunkWA6S6OWI_js = require('./chunk-WA6S6OWI.js');
4
4
  require('./chunk-XO62WWX4.js');
5
- var chunk56MCJH3J_js = require('./chunk-56MCJH3J.js');
6
- var chunk7AZLH52Q_js = require('./chunk-7AZLH52Q.js');
7
- var chunkE5JLGW6Y_js = require('./chunk-E5JLGW6Y.js');
8
- var chunkKKAINAQ4_js = require('./chunk-KKAINAQ4.js');
9
- var chunkB73RFLCU_js = require('./chunk-B73RFLCU.js');
5
+ var chunkP2HS5DSB_js = require('./chunk-P2HS5DSB.js');
6
+ var chunkNQ7PNOBQ_js = require('./chunk-NQ7PNOBQ.js');
7
+ var chunk36VX6ICO_js = require('./chunk-36VX6ICO.js');
8
+ var chunkGJQXGFHV_js = require('./chunk-GJQXGFHV.js');
9
+ var chunkXNVKXLZI_js = require('./chunk-XNVKXLZI.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-UHUBYHC5.js');
12
+ require('./chunk-4QMX7ZWH.js');
13
13
  require('./chunk-NOSBV75N.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 chunk56MCJH3J_js.executor_default; }
26
+ get: function () { return chunkP2HS5DSB_js.executor_default; }
27
27
  });
28
28
  Object.defineProperty(exports, "prepare", {
29
29
  enumerable: true,
30
- get: function () { return chunk7AZLH52Q_js.executor_default; }
30
+ get: function () { return chunkNQ7PNOBQ_js.executor_default; }
31
31
  });
32
32
  Object.defineProperty(exports, "build", {
33
33
  enumerable: true,
34
- get: function () { return chunkE5JLGW6Y_js.executor_default; }
34
+ get: function () { return chunk36VX6ICO_js.executor_default; }
35
35
  });
36
36
  Object.defineProperty(exports, "clean", {
37
37
  enumerable: true,
38
- get: function () { return chunkKKAINAQ4_js.executor_default; }
38
+ get: function () { return chunkGJQXGFHV_js.executor_default; }
39
39
  });
40
40
  Object.defineProperty(exports, "docs", {
41
41
  enumerable: true,
42
- get: function () { return chunkB73RFLCU_js.executor_default; }
42
+ get: function () { return chunkXNVKXLZI_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-IWSYHFCU.mjs';
2
2
  import './chunk-UV4HQO3Y.mjs';
3
- export { executor_default as lint } from './chunk-LM4Z5ESW.mjs';
4
- export { executor_default as prepare } from './chunk-TTWSRFD2.mjs';
5
- export { executor_default as build } from './chunk-562NI5FM.mjs';
6
- export { executor_default as clean } from './chunk-S5T5BM2U.mjs';
7
- export { executor_default as docs } from './chunk-LOTVN4ME.mjs';
3
+ export { executor_default as lint } from './chunk-7DMJOQ2K.mjs';
4
+ export { executor_default as prepare } from './chunk-KH3CLXZY.mjs';
5
+ export { executor_default as build } from './chunk-OHK3W2CQ.mjs';
6
+ export { executor_default as clean } from './chunk-IJWBJS6B.mjs';
7
+ export { executor_default as docs } from './chunk-FWI4YEFU.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-IGOI3JVE.mjs';
10
+ import './chunk-DBTQDN2C.mjs';
11
11
  import './chunk-KXFIN2NL.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 chunkUHUBYHC5_js = require('../../chunk-UHUBYHC5.js');
3
+ var chunk4QMX7ZWH_js = require('../../chunk-4QMX7ZWH.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 chunkUHUBYHC5_js.withExecutor; }
11
+ get: function () { return chunk4QMX7ZWH_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-IGOI3JVE.mjs';
1
+ export { withExecutor } from '../../chunk-DBTQDN2C.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 chunkE5JLGW6Y_js = require('../../../chunk-E5JLGW6Y.js');
6
- require('../../../chunk-UHUBYHC5.js');
5
+ var chunk36VX6ICO_js = require('../../../chunk-36VX6ICO.js');
6
+ require('../../../chunk-4QMX7ZWH.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 chunkE5JLGW6Y_js.executor_default; }
14
+ get: function () { return chunk36VX6ICO_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkE5JLGW6Y_js.executorFn; }
18
+ get: function () { return chunk36VX6ICO_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-562NI5FM.mjs';
2
- import '../../../chunk-IGOI3JVE.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-OHK3W2CQ.mjs';
2
+ import '../../../chunk-DBTQDN2C.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 chunkKKAINAQ4_js = require('../../../chunk-KKAINAQ4.js');
6
- require('../../../chunk-UHUBYHC5.js');
5
+ var chunkGJQXGFHV_js = require('../../../chunk-GJQXGFHV.js');
6
+ require('../../../chunk-4QMX7ZWH.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 chunkKKAINAQ4_js.executor_default; }
14
+ get: function () { return chunkGJQXGFHV_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkKKAINAQ4_js.executorFn; }
18
+ get: function () { return chunkGJQXGFHV_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-S5T5BM2U.mjs';
2
- import '../../../chunk-IGOI3JVE.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-IJWBJS6B.mjs';
2
+ import '../../../chunk-DBTQDN2C.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 chunkB73RFLCU_js = require('../../../chunk-B73RFLCU.js');
6
- require('../../../chunk-UHUBYHC5.js');
5
+ var chunkXNVKXLZI_js = require('../../../chunk-XNVKXLZI.js');
6
+ require('../../../chunk-4QMX7ZWH.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 chunkB73RFLCU_js.executor_default; }
14
+ get: function () { return chunkXNVKXLZI_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkB73RFLCU_js.executorFn; }
18
+ get: function () { return chunkXNVKXLZI_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-LOTVN4ME.mjs';
2
- import '../../../chunk-IGOI3JVE.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-FWI4YEFU.mjs';
2
+ import '../../../chunk-DBTQDN2C.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 chunk56MCJH3J_js = require('../../../chunk-56MCJH3J.js');
6
- require('../../../chunk-UHUBYHC5.js');
5
+ var chunkP2HS5DSB_js = require('../../../chunk-P2HS5DSB.js');
6
+ require('../../../chunk-4QMX7ZWH.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 chunk56MCJH3J_js.executor_default; }
14
+ get: function () { return chunkP2HS5DSB_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk56MCJH3J_js.executorFn; }
18
+ get: function () { return chunkP2HS5DSB_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-LM4Z5ESW.mjs';
2
- import '../../../chunk-IGOI3JVE.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-7DMJOQ2K.mjs';
2
+ import '../../../chunk-DBTQDN2C.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 chunk7AZLH52Q_js = require('../../../chunk-7AZLH52Q.js');
6
- require('../../../chunk-UHUBYHC5.js');
5
+ var chunkNQ7PNOBQ_js = require('../../../chunk-NQ7PNOBQ.js');
6
+ require('../../../chunk-4QMX7ZWH.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 chunk7AZLH52Q_js.executor_default; }
14
+ get: function () { return chunkNQ7PNOBQ_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk7AZLH52Q_js.executorFn; }
18
+ get: function () { return chunkNQ7PNOBQ_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-TTWSRFD2.mjs';
2
- import '../../../chunk-IGOI3JVE.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-KH3CLXZY.mjs';
2
+ import '../../../chunk-DBTQDN2C.mjs';
3
3
  import '../../../chunk-OVX2CEXQ.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';
@@ -38,7 +38,7 @@ interface CreateNxPluginOptions {
38
38
  * A string identifier that allows a child framework or tool to identify itself when using Powerlines.
39
39
  *
40
40
  * @remarks
41
- * If no values are provided for {@link OutputConfig.dts | output.dts}, {@link OutputConfig.builtinPrefix | output.builtinPrefix}, or {@link OutputConfig.artifactsFolder | output.artifactsFolder}, this value will be used as the default.
41
+ * If no values are provided for {@link OutputConfig.dts | output.dts} or {@link OutputConfig.artifactsFolder | output.artifactsFolder}, this value will be used as the default.
42
42
  *
43
43
  * @defaultValue "powerlines"
44
44
  */
@@ -38,7 +38,7 @@ interface CreateNxPluginOptions {
38
38
  * A string identifier that allows a child framework or tool to identify itself when using Powerlines.
39
39
  *
40
40
  * @remarks
41
- * If no values are provided for {@link OutputConfig.dts | output.dts}, {@link OutputConfig.builtinPrefix | output.builtinPrefix}, or {@link OutputConfig.artifactsFolder | output.artifactsFolder}, this value will be used as the default.
41
+ * If no values are provided for {@link OutputConfig.dts | output.dts} or {@link OutputConfig.artifactsFolder | output.artifactsFolder}, this value will be used as the default.
42
42
  *
43
43
  * @defaultValue "powerlines"
44
44
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.11.127",
3
+ "version": "0.11.128",
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.71"
199
+ "powerlines": "^0.37.72"
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": "6fd6de6c956acc53f73c34d8b19827d094e604af"
213
+ "gitHead": "458556ca7def9536d1c1fbd770e005a004d0a513"
214
214
  }