@powerlines/nx 0.2.0 → 0.3.0

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 +11 -0
  2. package/dist/{chunk-4QSGA5A4.mjs → chunk-4T5LIOS7.mjs} +17 -16
  3. package/dist/{chunk-F3B56YER.js → chunk-6SBXXTFC.js} +2 -2
  4. package/dist/{chunk-VRETYARN.js → chunk-BM7JS6C2.js} +2 -2
  5. package/dist/{chunk-PSSLJDP5.mjs → chunk-EJ5N22VV.mjs} +1 -1
  6. package/dist/{chunk-YPHW2GBQ.mjs → chunk-GZAHD3HX.mjs} +1 -1
  7. package/dist/{chunk-Y7YQWWS2.mjs → chunk-HCFUFMAF.mjs} +1 -1
  8. package/dist/{chunk-SH2Y2OGJ.js → chunk-MQKPEN3X.js} +17 -16
  9. package/dist/{chunk-K6XBJH2L.js → chunk-MQQZWVFL.js} +2 -2
  10. package/dist/{chunk-KVN36KM4.js → chunk-VFYKWLFU.js} +2 -2
  11. package/dist/{chunk-U6AMKLJF.mjs → chunk-WAQHDLQP.mjs} +1 -1
  12. package/dist/{chunk-LRQS76FH.mjs → chunk-XSNPOHTI.mjs} +1 -1
  13. package/dist/{chunk-JIRHFIPP.js → chunk-Y7LKUYQR.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/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.2.0](https://github.com/storm-software/powerlines/releases/tag/nx%400.2.0) (2025-10-21)
6
+
7
+ ### Features
8
+
9
+ - **nx:** Added `runtimeFolder` configuration option to plugin
10
+ ([ddfa6fc](https://github.com/storm-software/powerlines/commit/ddfa6fc))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated powerlines to 0.2.0
15
+
5
16
  ## [0.1.0](https://github.com/storm-software/powerlines/releases/tag/nx%400.1.0) (2025-10-20)
6
17
 
7
18
  ### Updated Dependencies
@@ -27,11 +27,11 @@ import Handlebars from 'handlebars';
27
27
  import { readJsonFile, readJsonFileSync } from '@stryke/fs/json';
28
28
  import { appendPath } from '@stryke/path/append';
29
29
  import ts3, { createProgram, createCompilerHost, getPreEmitDiagnostics, getLineAndCharacterOfPosition, flattenDiagnosticMessageText } from 'typescript';
30
+ import { titleCase } from '@stryke/string-format/title-case';
30
31
  import { isUndefined } from '@stryke/type-checks/is-undefined';
31
32
  import { writeFile as writeFile$1 } from '@stryke/fs/write-file';
32
33
  import { format, resolveConfig } from 'prettier';
33
34
  import { resolvePackage } from '@stryke/fs/resolve';
34
- import { titleCase } from '@stryke/string-format/title-case';
35
35
  import { getEnvPaths } from '@stryke/env/get-env-paths';
36
36
  import { relativeToWorkspaceRoot, getWorkspaceRoot } from '@stryke/fs/get-workspace-root';
37
37
  import { murmurhash } from '@stryke/hash/murmurhash';
@@ -156,26 +156,22 @@ ${parsedCommandLine.errors.map((error) => `- ${(error.category !== void 0 && err
156
156
  };
157
157
  }
158
158
  __name(getParsedTypeScriptConfig, "getParsedTypeScriptConfig");
159
-
160
- // ../powerlines/src/lib/utilities/file-header.ts
161
- function getBaseFileHeader() {
159
+ function getBaseFileHeader(context) {
162
160
  return `
163
- // Generated with Powerlines
161
+ // Generated with ${titleCase(context.config.framework)}
164
162
  // Note: Do not edit this file manually - it will be overwritten automatically
165
163
  `;
166
164
  }
167
165
  __name(getBaseFileHeader, "getBaseFileHeader");
168
- function getFileHeader(directive = "", prettierIgnore = false) {
169
- if (directive && process.env.POWERLINES_LOCAL) {
170
- directive = directive.replaceAll("powerlines/runtime-types", "../../dist/packages/types");
171
- }
166
+ function getFileHeader(context, options = {}) {
167
+ const { directive = null, prettierIgnore = false } = options;
172
168
  return `/* eslint-disable */
173
169
  // biome-ignore lint: disable
174
170
  ${prettierIgnore ? `// prettier-ignore` : ""}${directive ? `
175
171
 
176
172
  ${directive}
177
173
  ` : "\n"}
178
- ${getBaseFileHeader()}
174
+ ${getBaseFileHeader(context)}
179
175
 
180
176
  `;
181
177
  }
@@ -1548,7 +1544,8 @@ var PowerlinesContext = class _PowerlinesContext {
1548
1544
  lint: config.lint,
1549
1545
  transform: config.transform,
1550
1546
  build: config.build,
1551
- override: config.override
1547
+ override: config.override,
1548
+ framework: config.framework
1552
1549
  };
1553
1550
  }
1554
1551
  /**
@@ -1844,9 +1841,9 @@ var PowerlinesContext = class _PowerlinesContext {
1844
1841
  output: {
1845
1842
  outputPath: joinPaths$1("dist", cacheKey.projectRoot),
1846
1843
  mode: "virtual",
1847
- dts: joinPaths$1(cacheKey.projectRoot, "powerlines.d.ts"),
1848
- builtinPrefix: "powerlines",
1849
- runtimeFolder: joinPaths$1(cacheKey.projectRoot, ".powerlines"),
1844
+ dts: joinPaths$1(cacheKey.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
1845
+ builtinPrefix: config.framework ?? "powerlines",
1846
+ runtimeFolder: joinPaths$1(cacheKey.projectRoot, `.${config.framework ?? "powerlines"}`),
1850
1847
  assets: [
1851
1848
  {
1852
1849
  glob: "LICENSE"
@@ -1864,6 +1861,7 @@ var PowerlinesContext = class _PowerlinesContext {
1864
1861
  }, options.isHighPriority ? {} : this.#getConfigProps(config), {
1865
1862
  inlineConfig: {},
1866
1863
  userConfig: {},
1864
+ framework: "powerlines",
1867
1865
  platform: "neutral",
1868
1866
  mode: "production",
1869
1867
  projectType: "application",
@@ -2881,7 +2879,10 @@ ${diagnosticMessage.length > 5e3 ? `${diagnosticMessage.slice(0, 5e3)}...` : dia
2881
2879
  const sourceFile = getSourceFile(String(context.config.output.dts), `/// <reference types="powerlines/shared" />${context.config.build.platform !== "neutral" ? `
2882
2880
  /// <reference types="powerlines/${context.config.build.platform}" />` : ""}
2883
2881
 
2884
- ${getFileHeader(null, false)}
2882
+ ${getFileHeader(context, {
2883
+ directive: null,
2884
+ prettierIgnore: false
2885
+ })}
2885
2886
 
2886
2887
  ${builtinModules}`.replace(
2887
2888
  // eslint-disable-next-line regexp/no-super-linear-backtracking
@@ -3282,7 +3283,7 @@ ${formatLogMessage(context.config)}`);
3282
3283
  if (context.config.projectType === "application") {
3283
3284
  context.log(LogLevelLabel.TRACE, "Generating built-in barrel file");
3284
3285
  await context.fs.writeBuiltinFile("index", joinPaths(context.builtinsPath, "index.ts"), `
3285
- ${getFileHeader()}
3286
+ ${getFileHeader(context)}
3286
3287
 
3287
3288
  ${(await context.fs.listBuiltinFiles()).filter((file) => !isParentPath(file.path, joinPaths(context.builtinsPath, "log")) && !isParentPath(file.path, joinPaths(context.builtinsPath, "storage"))).map((file) => `export * from "./${replacePath(file.path, context.builtinsPath).replace(`.${findFileExtensionSafe(file.path)}`, "")}";`).join("\n")}
3288
3289
  `);
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkSH2Y2OGJ_js = require('./chunk-SH2Y2OGJ.js');
3
+ var chunkMQKPEN3X_js = require('./chunk-MQKPEN3X.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 = chunkSH2Y2OGJ_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkMQKPEN3X_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 chunkSH2Y2OGJ_js = require('./chunk-SH2Y2OGJ.js');
3
+ var chunkMQKPEN3X_js = require('./chunk-MQKPEN3X.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 = chunkSH2Y2OGJ_js.withExecutor("docs", executorFn);
14
+ var executor = chunkMQKPEN3X_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-4QSGA5A4.mjs';
1
+ import { withExecutor } from './chunk-4T5LIOS7.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-4QSGA5A4.mjs';
1
+ import { withExecutor } from './chunk-4T5LIOS7.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-4QSGA5A4.mjs';
1
+ import { withExecutor } from './chunk-4T5LIOS7.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
@@ -29,11 +29,11 @@ var Handlebars = require('handlebars');
29
29
  var json = require('@stryke/fs/json');
30
30
  var append = require('@stryke/path/append');
31
31
  var ts3 = require('typescript');
32
+ var titleCase = require('@stryke/string-format/title-case');
32
33
  var isUndefined = require('@stryke/type-checks/is-undefined');
33
34
  var writeFile$1 = require('@stryke/fs/write-file');
34
35
  var prettier = require('prettier');
35
36
  var resolve = require('@stryke/fs/resolve');
36
- var titleCase = require('@stryke/string-format/title-case');
37
37
  var getEnvPaths = require('@stryke/env/get-env-paths');
38
38
  var getWorkspaceRoot = require('@stryke/fs/get-workspace-root');
39
39
  var murmurhash = require('@stryke/hash/murmurhash');
@@ -187,26 +187,22 @@ ${parsedCommandLine.errors.map((error) => `- ${(error.category !== void 0 && err
187
187
  };
188
188
  }
189
189
  chunkSHUYVCID_js.__name(getParsedTypeScriptConfig, "getParsedTypeScriptConfig");
190
-
191
- // ../powerlines/src/lib/utilities/file-header.ts
192
- function getBaseFileHeader() {
190
+ function getBaseFileHeader(context) {
193
191
  return `
194
- // Generated with Powerlines
192
+ // Generated with ${titleCase.titleCase(context.config.framework)}
195
193
  // Note: Do not edit this file manually - it will be overwritten automatically
196
194
  `;
197
195
  }
198
196
  chunkSHUYVCID_js.__name(getBaseFileHeader, "getBaseFileHeader");
199
- function getFileHeader(directive = "", prettierIgnore = false) {
200
- if (directive && process.env.POWERLINES_LOCAL) {
201
- directive = directive.replaceAll("powerlines/runtime-types", "../../dist/packages/types");
202
- }
197
+ function getFileHeader(context, options = {}) {
198
+ const { directive = null, prettierIgnore = false } = options;
203
199
  return `/* eslint-disable */
204
200
  // biome-ignore lint: disable
205
201
  ${prettierIgnore ? `// prettier-ignore` : ""}${directive ? `
206
202
 
207
203
  ${directive}
208
204
  ` : "\n"}
209
- ${getBaseFileHeader()}
205
+ ${getBaseFileHeader(context)}
210
206
 
211
207
  `;
212
208
  }
@@ -1579,7 +1575,8 @@ var PowerlinesContext = class _PowerlinesContext {
1579
1575
  lint: config.lint,
1580
1576
  transform: config.transform,
1581
1577
  build: config.build,
1582
- override: config.override
1578
+ override: config.override,
1579
+ framework: config.framework
1583
1580
  };
1584
1581
  }
1585
1582
  /**
@@ -1875,9 +1872,9 @@ var PowerlinesContext = class _PowerlinesContext {
1875
1872
  output: {
1876
1873
  outputPath: join.joinPaths("dist", cacheKey.projectRoot),
1877
1874
  mode: "virtual",
1878
- dts: join.joinPaths(cacheKey.projectRoot, "powerlines.d.ts"),
1879
- builtinPrefix: "powerlines",
1880
- runtimeFolder: join.joinPaths(cacheKey.projectRoot, ".powerlines"),
1875
+ dts: join.joinPaths(cacheKey.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
1876
+ builtinPrefix: config.framework ?? "powerlines",
1877
+ runtimeFolder: join.joinPaths(cacheKey.projectRoot, `.${config.framework ?? "powerlines"}`),
1881
1878
  assets: [
1882
1879
  {
1883
1880
  glob: "LICENSE"
@@ -1895,6 +1892,7 @@ var PowerlinesContext = class _PowerlinesContext {
1895
1892
  }, options.isHighPriority ? {} : this.#getConfigProps(config), {
1896
1893
  inlineConfig: {},
1897
1894
  userConfig: {},
1895
+ framework: "powerlines",
1898
1896
  platform: "neutral",
1899
1897
  mode: "production",
1900
1898
  projectType: "application",
@@ -2912,7 +2910,10 @@ ${diagnosticMessage.length > 5e3 ? `${diagnosticMessage.slice(0, 5e3)}...` : dia
2912
2910
  const sourceFile = getSourceFile(String(context.config.output.dts), `/// <reference types="powerlines/shared" />${context.config.build.platform !== "neutral" ? `
2913
2911
  /// <reference types="powerlines/${context.config.build.platform}" />` : ""}
2914
2912
 
2915
- ${getFileHeader(null, false)}
2913
+ ${getFileHeader(context, {
2914
+ directive: null,
2915
+ prettierIgnore: false
2916
+ })}
2916
2917
 
2917
2918
  ${builtinModules}`.replace(
2918
2919
  // eslint-disable-next-line regexp/no-super-linear-backtracking
@@ -3313,7 +3314,7 @@ ${console$1.formatLogMessage(context.config)}`);
3313
3314
  if (context.config.projectType === "application") {
3314
3315
  context.log(types.LogLevelLabel.TRACE, "Generating built-in barrel file");
3315
3316
  await context.fs.writeBuiltinFile("index", joinPaths.joinPaths(context.builtinsPath, "index.ts"), `
3316
- ${getFileHeader()}
3317
+ ${getFileHeader(context)}
3317
3318
 
3318
3319
  ${(await context.fs.listBuiltinFiles()).filter((file) => !isParentPath.isParentPath(file.path, joinPaths.joinPaths(context.builtinsPath, "log")) && !isParentPath.isParentPath(file.path, joinPaths.joinPaths(context.builtinsPath, "storage"))).map((file) => `export * from "./${replace.replacePath(file.path, context.builtinsPath).replace(`.${filePathFns.findFileExtensionSafe(file.path)}`, "")}";`).join("\n")}
3319
3320
  `);
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkSH2Y2OGJ_js = require('./chunk-SH2Y2OGJ.js');
3
+ var chunkMQKPEN3X_js = require('./chunk-MQKPEN3X.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 = chunkSH2Y2OGJ_js.withExecutor("clean", executorFn);
14
+ var executor = chunkMQKPEN3X_js.withExecutor("clean", 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 chunkSH2Y2OGJ_js = require('./chunk-SH2Y2OGJ.js');
3
+ var chunkMQKPEN3X_js = require('./chunk-MQKPEN3X.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 = chunkSH2Y2OGJ_js.withExecutor("lint", executorFn);
14
+ var executor = chunkMQKPEN3X_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-4QSGA5A4.mjs';
1
+ import { withExecutor } from './chunk-4T5LIOS7.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/docs/executor.ts
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-4QSGA5A4.mjs';
1
+ import { withExecutor } from './chunk-4T5LIOS7.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 chunkSH2Y2OGJ_js = require('./chunk-SH2Y2OGJ.js');
3
+ var chunkMQKPEN3X_js = require('./chunk-MQKPEN3X.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 = chunkSH2Y2OGJ_js.withExecutor("build", executorFn);
22
+ var executor = chunkMQKPEN3X_js.withExecutor("build", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  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 chunkK6XBJH2L_js = require('./chunk-K6XBJH2L.js');
5
- var chunkVRETYARN_js = require('./chunk-VRETYARN.js');
6
- var chunkKVN36KM4_js = require('./chunk-KVN36KM4.js');
7
- var chunkF3B56YER_js = require('./chunk-F3B56YER.js');
8
- var chunkJIRHFIPP_js = require('./chunk-JIRHFIPP.js');
9
- require('./chunk-SH2Y2OGJ.js');
4
+ var chunkMQQZWVFL_js = require('./chunk-MQQZWVFL.js');
5
+ var chunkBM7JS6C2_js = require('./chunk-BM7JS6C2.js');
6
+ var chunkVFYKWLFU_js = require('./chunk-VFYKWLFU.js');
7
+ var chunk6SBXXTFC_js = require('./chunk-6SBXXTFC.js');
8
+ var chunkY7LKUYQR_js = require('./chunk-Y7LKUYQR.js');
9
+ require('./chunk-MQKPEN3X.js');
10
10
  require('./chunk-HHPODCTP.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
@@ -14,21 +14,21 @@ require('./chunk-SHUYVCID.js');
14
14
 
15
15
  Object.defineProperty(exports, "clean", {
16
16
  enumerable: true,
17
- get: function () { return chunkK6XBJH2L_js.executor_default; }
17
+ get: function () { return chunkMQQZWVFL_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "docs", {
20
20
  enumerable: true,
21
- get: function () { return chunkVRETYARN_js.executor_default; }
21
+ get: function () { return chunkBM7JS6C2_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "lint", {
24
24
  enumerable: true,
25
- get: function () { return chunkKVN36KM4_js.executor_default; }
25
+ get: function () { return chunkVFYKWLFU_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "prepare", {
28
28
  enumerable: true,
29
- get: function () { return chunkF3B56YER_js.executor_default; }
29
+ get: function () { return chunk6SBXXTFC_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "build", {
32
32
  enumerable: true,
33
- get: function () { return chunkJIRHFIPP_js.executor_default; }
33
+ get: function () { return chunkY7LKUYQR_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as clean } from './chunk-Y7YQWWS2.mjs';
3
- export { executor_default as docs } from './chunk-U6AMKLJF.mjs';
4
- export { executor_default as lint } from './chunk-PSSLJDP5.mjs';
5
- export { executor_default as prepare } from './chunk-YPHW2GBQ.mjs';
6
- export { executor_default as build } from './chunk-LRQS76FH.mjs';
7
- import './chunk-4QSGA5A4.mjs';
2
+ export { executor_default as clean } from './chunk-HCFUFMAF.mjs';
3
+ export { executor_default as docs } from './chunk-WAQHDLQP.mjs';
4
+ export { executor_default as lint } from './chunk-EJ5N22VV.mjs';
5
+ export { executor_default as prepare } from './chunk-GZAHD3HX.mjs';
6
+ export { executor_default as build } from './chunk-XSNPOHTI.mjs';
7
+ import './chunk-4T5LIOS7.mjs';
8
8
  import './chunk-CYWOTYVX.mjs';
9
9
  import './chunk-O6YSETKJ.mjs';
package/dist/index.js CHANGED
@@ -1,15 +1,15 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkK6XBJH2L_js = require('./chunk-K6XBJH2L.js');
5
- var chunkVRETYARN_js = require('./chunk-VRETYARN.js');
6
- var chunkKVN36KM4_js = require('./chunk-KVN36KM4.js');
7
- var chunkF3B56YER_js = require('./chunk-F3B56YER.js');
4
+ var chunkMQQZWVFL_js = require('./chunk-MQQZWVFL.js');
5
+ var chunkBM7JS6C2_js = require('./chunk-BM7JS6C2.js');
6
+ var chunkVFYKWLFU_js = require('./chunk-VFYKWLFU.js');
7
+ var chunk6SBXXTFC_js = require('./chunk-6SBXXTFC.js');
8
8
  require('./chunk-N2YKXZ5R.js');
9
9
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
10
10
  var chunkZ4BJ37JY_js = require('./chunk-Z4BJ37JY.js');
11
- var chunkJIRHFIPP_js = require('./chunk-JIRHFIPP.js');
12
- require('./chunk-SH2Y2OGJ.js');
11
+ var chunkY7LKUYQR_js = require('./chunk-Y7LKUYQR.js');
12
+ require('./chunk-MQKPEN3X.js');
13
13
  require('./chunk-HHPODCTP.js');
14
14
  require('./chunk-SHUYVCID.js');
15
15
 
@@ -17,19 +17,19 @@ require('./chunk-SHUYVCID.js');
17
17
 
18
18
  Object.defineProperty(exports, "clean", {
19
19
  enumerable: true,
20
- get: function () { return chunkK6XBJH2L_js.executor_default; }
20
+ get: function () { return chunkMQQZWVFL_js.executor_default; }
21
21
  });
22
22
  Object.defineProperty(exports, "docs", {
23
23
  enumerable: true,
24
- get: function () { return chunkVRETYARN_js.executor_default; }
24
+ get: function () { return chunkBM7JS6C2_js.executor_default; }
25
25
  });
26
26
  Object.defineProperty(exports, "lint", {
27
27
  enumerable: true,
28
- get: function () { return chunkKVN36KM4_js.executor_default; }
28
+ get: function () { return chunkVFYKWLFU_js.executor_default; }
29
29
  });
30
30
  Object.defineProperty(exports, "prepare", {
31
31
  enumerable: true,
32
- get: function () { return chunkF3B56YER_js.executor_default; }
32
+ get: function () { return chunk6SBXXTFC_js.executor_default; }
33
33
  });
34
34
  Object.defineProperty(exports, "sync", {
35
35
  enumerable: true,
@@ -49,5 +49,5 @@ Object.defineProperty(exports, "name", {
49
49
  });
50
50
  Object.defineProperty(exports, "build", {
51
51
  enumerable: true,
52
- get: function () { return chunkJIRHFIPP_js.executor_default; }
52
+ get: function () { return chunkY7LKUYQR_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-Y7YQWWS2.mjs';
3
- export { executor_default as docs } from './chunk-U6AMKLJF.mjs';
4
- export { executor_default as lint } from './chunk-PSSLJDP5.mjs';
5
- export { executor_default as prepare } from './chunk-YPHW2GBQ.mjs';
2
+ export { executor_default as clean } from './chunk-HCFUFMAF.mjs';
3
+ export { executor_default as docs } from './chunk-WAQHDLQP.mjs';
4
+ export { executor_default as lint } from './chunk-EJ5N22VV.mjs';
5
+ export { executor_default as prepare } from './chunk-GZAHD3HX.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-22QO45EK.mjs';
9
- export { executor_default as build } from './chunk-LRQS76FH.mjs';
10
- import './chunk-4QSGA5A4.mjs';
9
+ export { executor_default as build } from './chunk-XSNPOHTI.mjs';
10
+ import './chunk-4T5LIOS7.mjs';
11
11
  import './chunk-CYWOTYVX.mjs';
12
12
  import './chunk-O6YSETKJ.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkSH2Y2OGJ_js = require('../../chunk-SH2Y2OGJ.js');
3
+ var chunkMQKPEN3X_js = require('../../chunk-MQKPEN3X.js');
4
4
  require('../../chunk-HHPODCTP.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 chunkSH2Y2OGJ_js.withExecutor; }
11
+ get: function () { return chunkMQKPEN3X_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-4QSGA5A4.mjs';
1
+ export { withExecutor } from '../../chunk-4T5LIOS7.mjs';
2
2
  import '../../chunk-CYWOTYVX.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 chunkJIRHFIPP_js = require('../../../chunk-JIRHFIPP.js');
6
- require('../../../chunk-SH2Y2OGJ.js');
5
+ var chunkY7LKUYQR_js = require('../../../chunk-Y7LKUYQR.js');
6
+ require('../../../chunk-MQKPEN3X.js');
7
7
  require('../../../chunk-HHPODCTP.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 chunkJIRHFIPP_js.executor_default; }
14
+ get: function () { return chunkY7LKUYQR_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkJIRHFIPP_js.executorFn; }
18
+ get: function () { return chunkY7LKUYQR_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-LRQS76FH.mjs';
2
- import '../../../chunk-4QSGA5A4.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-XSNPOHTI.mjs';
2
+ import '../../../chunk-4T5LIOS7.mjs';
3
3
  import '../../../chunk-CYWOTYVX.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 chunkK6XBJH2L_js = require('../../../chunk-K6XBJH2L.js');
6
- require('../../../chunk-SH2Y2OGJ.js');
5
+ var chunkMQQZWVFL_js = require('../../../chunk-MQQZWVFL.js');
6
+ require('../../../chunk-MQKPEN3X.js');
7
7
  require('../../../chunk-HHPODCTP.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 chunkK6XBJH2L_js.executor_default; }
14
+ get: function () { return chunkMQQZWVFL_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkK6XBJH2L_js.executorFn; }
18
+ get: function () { return chunkMQQZWVFL_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-Y7YQWWS2.mjs';
2
- import '../../../chunk-4QSGA5A4.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-HCFUFMAF.mjs';
2
+ import '../../../chunk-4T5LIOS7.mjs';
3
3
  import '../../../chunk-CYWOTYVX.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 chunkVRETYARN_js = require('../../../chunk-VRETYARN.js');
6
- require('../../../chunk-SH2Y2OGJ.js');
5
+ var chunkBM7JS6C2_js = require('../../../chunk-BM7JS6C2.js');
6
+ require('../../../chunk-MQKPEN3X.js');
7
7
  require('../../../chunk-HHPODCTP.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 chunkVRETYARN_js.executor_default; }
14
+ get: function () { return chunkBM7JS6C2_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkVRETYARN_js.executorFn; }
18
+ get: function () { return chunkBM7JS6C2_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-U6AMKLJF.mjs';
2
- import '../../../chunk-4QSGA5A4.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-WAQHDLQP.mjs';
2
+ import '../../../chunk-4T5LIOS7.mjs';
3
3
  import '../../../chunk-CYWOTYVX.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 chunkKVN36KM4_js = require('../../../chunk-KVN36KM4.js');
6
- require('../../../chunk-SH2Y2OGJ.js');
5
+ var chunkVFYKWLFU_js = require('../../../chunk-VFYKWLFU.js');
6
+ require('../../../chunk-MQKPEN3X.js');
7
7
  require('../../../chunk-HHPODCTP.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 chunkKVN36KM4_js.executor_default; }
14
+ get: function () { return chunkVFYKWLFU_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkKVN36KM4_js.executorFn; }
18
+ get: function () { return chunkVFYKWLFU_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-PSSLJDP5.mjs';
2
- import '../../../chunk-4QSGA5A4.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-EJ5N22VV.mjs';
2
+ import '../../../chunk-4T5LIOS7.mjs';
3
3
  import '../../../chunk-CYWOTYVX.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 chunkF3B56YER_js = require('../../../chunk-F3B56YER.js');
6
- require('../../../chunk-SH2Y2OGJ.js');
5
+ var chunk6SBXXTFC_js = require('../../../chunk-6SBXXTFC.js');
6
+ require('../../../chunk-MQKPEN3X.js');
7
7
  require('../../../chunk-HHPODCTP.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 chunkF3B56YER_js.executor_default; }
14
+ get: function () { return chunk6SBXXTFC_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkF3B56YER_js.executorFn; }
18
+ get: function () { return chunk6SBXXTFC_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-YPHW2GBQ.mjs';
2
- import '../../../chunk-4QSGA5A4.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-GZAHD3HX.mjs';
2
+ import '../../../chunk-4T5LIOS7.mjs';
3
3
  import '../../../chunk-CYWOTYVX.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.2.0",
3
+ "version": "0.3.0",
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": "21.5.3",
157
- "powerlines": "^0.2.0"
157
+ "powerlines": "^0.3.0"
158
158
  },
159
159
  "devDependencies": {
160
160
  "@nx/workspace": "21.5.3",
@@ -168,5 +168,5 @@
168
168
  "publishConfig": { "access": "public" },
169
169
  "executors": "./executors.json",
170
170
  "generators": "./generators.json",
171
- "gitHead": "319be4880b93666a6dafe38d60278a8cad920f0b"
171
+ "gitHead": "fe5e201169810dd966ee328fa3dabf57077eea36"
172
172
  }