@powerlines/nx 0.10.36 → 0.10.37
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.
- package/CHANGELOG.md +11 -0
- package/dist/{chunk-AGWVUBME.mjs → chunk-32H4LR4S.mjs} +1 -1
- package/dist/{chunk-D5MAY4B6.js → chunk-53FEJYJL.js} +2 -2
- package/dist/{chunk-62JK5CR2.js → chunk-5HP24RWY.js} +2 -2
- package/dist/{chunk-LNSZHZQF.js → chunk-C3K6TKXH.js} +12 -32
- package/dist/{chunk-YAQUTH2M.js → chunk-D4UEK625.js} +2 -2
- package/dist/{chunk-OBVSDJNP.mjs → chunk-EKHF27MZ.mjs} +1 -1
- package/dist/{chunk-XQ44F4OL.mjs → chunk-HI5N4XXZ.mjs} +9 -29
- package/dist/{chunk-HOCK3PN2.mjs → chunk-KTB7KDCP.mjs} +1 -1
- package/dist/{chunk-3QGFYJKW.mjs → chunk-LLXWCS4O.mjs} +1 -1
- package/dist/{chunk-A36IQB2U.mjs → chunk-Q3ODFYEY.mjs} +10 -18
- package/dist/{chunk-ZGEXR2Z6.mjs → chunk-R6CZOQMS.mjs} +1 -1
- package/dist/{chunk-FXB722G2.js → chunk-RWFBSRGJ.js} +2 -2
- package/dist/{chunk-76PYI2PW.js → chunk-UZF6PHPR.js} +2 -2
- package/dist/{chunk-Q6DRZWW7.js → chunk-XZORJRHX.js} +10 -18
- package/dist/{chunk-6M466CL6.mjs → chunk-YMEHBI54.mjs} +1 -1
- package/dist/{chunk-V3APU4CI.js → chunk-ZH5WF5UY.js} +2 -2
- package/dist/executors.js +11 -11
- package/dist/executors.mjs +6 -6
- package/dist/index.js +14 -14
- package/dist/index.mjs +8 -8
- package/dist/src/base/base-executor.js +2 -2
- package/dist/src/base/base-executor.mjs +1 -1
- package/dist/src/executors/build/executor.js +4 -4
- package/dist/src/executors/build/executor.mjs +2 -2
- package/dist/src/executors/clean/executor.js +4 -4
- package/dist/src/executors/clean/executor.mjs +2 -2
- package/dist/src/executors/docs/executor.js +4 -4
- package/dist/src/executors/docs/executor.mjs +2 -2
- package/dist/src/executors/lint/executor.js +4 -4
- package/dist/src/executors/lint/executor.mjs +2 -2
- package/dist/src/executors/prepare/executor.js +4 -4
- package/dist/src/executors/prepare/executor.mjs +2 -2
- package/dist/src/helpers/plugin-utilities.js +4 -4
- package/dist/src/helpers/plugin-utilities.mjs +1 -1
- package/dist/src/plugin/index.js +3 -3
- package/dist/src/plugin/index.mjs +2 -2
- package/dist/src/types/plugin.d.mts +1 -1
- package/dist/src/types/plugin.d.ts +1 -1
- 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.10.37](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.37) (11/22/2025)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **nx:** Resolved issue applying `dependsOn` option to plugin
|
|
10
|
+
([2baf7af](https://github.com/storm-software/powerlines/commit/2baf7af))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated **powerlines** to **v0.24.9**
|
|
15
|
+
|
|
5
16
|
## [0.10.36](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.36) (11/22/2025)
|
|
6
17
|
|
|
7
18
|
### Updated Dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkC3K6TKXH_js = require('./chunk-C3K6TKXH.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 =
|
|
22
|
+
var executor = chunkC3K6TKXH_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
|
|
3
|
+
var chunkC3K6TKXH_js = require('./chunk-C3K6TKXH.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 =
|
|
14
|
+
var executor = chunkC3K6TKXH_js.withExecutor("docs", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -28,13 +28,12 @@ var chalk5 = require('chalk');
|
|
|
28
28
|
var Handlebars = require('handlebars');
|
|
29
29
|
var helperPluginUtils = require('@babel/helper-plugin-utils');
|
|
30
30
|
var t = require('@babel/types');
|
|
31
|
-
var
|
|
31
|
+
var ts = require('typescript');
|
|
32
32
|
var _package = require('@stryke/string-format/package');
|
|
33
33
|
var superdiff = require('@donedeal0/superdiff');
|
|
34
34
|
var json = require('@stryke/fs/json');
|
|
35
35
|
var stormJson = require('@stryke/json/storm-json');
|
|
36
36
|
var filePathFns = require('@stryke/path/file-path-fns');
|
|
37
|
-
var isParentPath = require('@stryke/path/is-parent-path');
|
|
38
37
|
var titleCase = require('@stryke/string-format/title-case');
|
|
39
38
|
var exists = require('@stryke/fs/exists');
|
|
40
39
|
var writeFile$1 = require('@stryke/fs/write-file');
|
|
@@ -67,6 +66,7 @@ var _fs = require('fs');
|
|
|
67
66
|
var colors = require('@storm-software/config-tools/utilities/colors');
|
|
68
67
|
var noop = require('@stryke/helpers/noop');
|
|
69
68
|
var slash = require('@stryke/path/slash');
|
|
69
|
+
var isParentPath = require('@stryke/path/is-parent-path');
|
|
70
70
|
var memfs = require('memfs');
|
|
71
71
|
var unionfs = require('unionfs');
|
|
72
72
|
var tsMorph = require('ts-morph');
|
|
@@ -96,7 +96,7 @@ var defu5__default = /*#__PURE__*/_interopDefault(defu5);
|
|
|
96
96
|
var chalk5__default = /*#__PURE__*/_interopDefault(chalk5);
|
|
97
97
|
var Handlebars__default = /*#__PURE__*/_interopDefault(Handlebars);
|
|
98
98
|
var t__namespace = /*#__PURE__*/_interopNamespace(t);
|
|
99
|
-
var
|
|
99
|
+
var ts__default = /*#__PURE__*/_interopDefault(ts);
|
|
100
100
|
var $__namespace = /*#__PURE__*/_interopNamespace($);
|
|
101
101
|
var _fs__default = /*#__PURE__*/_interopDefault(_fs);
|
|
102
102
|
|
|
@@ -231,9 +231,9 @@ async function emitTypes(context, files) {
|
|
|
231
231
|
const diagnosticMessages = [];
|
|
232
232
|
result.getDiagnostics().forEach((diagnostic) => {
|
|
233
233
|
if (diagnostic.getSourceFile()?.getBaseName()) {
|
|
234
|
-
diagnosticMessages.push(`${diagnostic.getSourceFile()?.getBaseName()} (${(diagnostic.getLineNumber() ?? 0) + 1}): ${
|
|
234
|
+
diagnosticMessages.push(`${diagnostic.getSourceFile()?.getBaseName()} (${(diagnostic.getLineNumber() ?? 0) + 1}): ${ts.flattenDiagnosticMessageText(diagnostic.getMessageText().toString(), "\n")}`);
|
|
235
235
|
} else {
|
|
236
|
-
diagnosticMessages.push(
|
|
236
|
+
diagnosticMessages.push(ts.flattenDiagnosticMessageText(diagnostic.getMessageText().toString(), "\n"));
|
|
237
237
|
}
|
|
238
238
|
});
|
|
239
239
|
const diagnosticMessage = diagnosticMessages.join("\n");
|
|
@@ -409,13 +409,13 @@ function isIncludeMatchFound(tsconfigType, types) {
|
|
|
409
409
|
return findIncludeMatch(tsconfigType, types) !== void 0;
|
|
410
410
|
}
|
|
411
411
|
chunkSHUYVCID_js.__name(isIncludeMatchFound, "isIncludeMatchFound");
|
|
412
|
-
function getParsedTypeScriptConfig(workspaceRoot, projectRoot, tsconfig, tsconfigRaw = {}, originalTsconfigJson, host =
|
|
412
|
+
function getParsedTypeScriptConfig(workspaceRoot, projectRoot, tsconfig, tsconfigRaw = {}, originalTsconfigJson, host = ts__default.default.sys) {
|
|
413
413
|
const tsconfigFilePath = getTsconfigFilePath(workspaceRoot, projectRoot, tsconfig);
|
|
414
414
|
const tsconfigJson = json.readJsonFileSync(tsconfigFilePath);
|
|
415
415
|
if (!tsconfigJson) {
|
|
416
416
|
throw new Error(`Cannot find the \`tsconfig.json\` configuration file at ${joinPaths.joinPaths(projectRoot, tsconfig ?? "tsconfig.json")}`);
|
|
417
417
|
}
|
|
418
|
-
const parsedCommandLine =
|
|
418
|
+
const parsedCommandLine = ts__default.default.parseJsonConfigFileContent(defu5__default.default(tsconfigRaw ?? {}, tsconfigJson), host, append.appendPath(projectRoot, workspaceRoot));
|
|
419
419
|
if (parsedCommandLine.errors.length > 0) {
|
|
420
420
|
const errorMessage = `Cannot parse the TypeScript compiler options. Please investigate the following issues:
|
|
421
421
|
${parsedCommandLine.errors.map((error) => `- ${(error.category !== void 0 && error.code ? `[${error.category}-${error.code}]: ` : "") + error.messageText.toString()}`).join("\n")}
|
|
@@ -456,15 +456,13 @@ async function resolveTsconfigChanges(context) {
|
|
|
456
456
|
const tsconfigJson = await json.readJsonFile(tsconfigFilePath);
|
|
457
457
|
tsconfigJson.compilerOptions ??= {};
|
|
458
458
|
if (context.config.output.dts !== false) {
|
|
459
|
-
context.
|
|
460
|
-
|
|
461
|
-
context.config.output.dts = joinPaths.joinPaths(context.config.output.dts, "powerlines.d.ts");
|
|
459
|
+
if (filePathFns.findFileExtension(context.dtsPath) !== "d.ts" && filePathFns.findFileExtension(context.dtsPath) !== "d.cts" && filePathFns.findFileExtension(context.dtsPath) !== "d.mts") {
|
|
460
|
+
context.config.output.dts = joinPaths.joinPaths(context.dtsPath, "powerlines.d.ts");
|
|
462
461
|
}
|
|
463
|
-
const dtsRelativePath = joinPaths.joinPaths(filePathFns.relativePath(joinPaths.joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot), filePathFns.findFilePath(context.
|
|
462
|
+
const dtsRelativePath = joinPaths.joinPaths(filePathFns.relativePath(joinPaths.joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot), filePathFns.findFilePath(context.dtsPath)), filePathFns.findFileName(context.dtsPath));
|
|
464
463
|
if (!tsconfigJson.include?.some((filePattern) => isIncludeMatchFound(filePattern, [
|
|
465
|
-
|
|
466
|
-
dtsRelativePath
|
|
467
|
-
"storm.d.ts"
|
|
464
|
+
context.dtsPath,
|
|
465
|
+
dtsRelativePath
|
|
468
466
|
]))) {
|
|
469
467
|
tsconfigJson.include ??= [];
|
|
470
468
|
tsconfigJson.include.push(dtsRelativePath.startsWith("./") ? dtsRelativePath.slice(2) : dtsRelativePath);
|
|
@@ -479,24 +477,6 @@ async function resolveTsconfigChanges(context) {
|
|
|
479
477
|
tsconfigJson.compilerOptions.lib ??= [];
|
|
480
478
|
tsconfigJson.compilerOptions.lib.push("esnext");
|
|
481
479
|
}
|
|
482
|
-
if (tsconfig.options.module !== ts2__default.default.ModuleKind.ESNext) {
|
|
483
|
-
tsconfigJson.compilerOptions.module = "ESNext";
|
|
484
|
-
}
|
|
485
|
-
if (!tsconfig.options.target || ![
|
|
486
|
-
ts2__default.default.ScriptTarget.ESNext,
|
|
487
|
-
ts2__default.default.ScriptTarget.ES2024,
|
|
488
|
-
ts2__default.default.ScriptTarget.ES2023,
|
|
489
|
-
ts2__default.default.ScriptTarget.ES2022,
|
|
490
|
-
ts2__default.default.ScriptTarget.ES2021
|
|
491
|
-
].includes(tsconfig.options.target)) {
|
|
492
|
-
tsconfigJson.compilerOptions.target = "ESNext";
|
|
493
|
-
}
|
|
494
|
-
if (tsconfig.options.moduleResolution !== ts2__default.default.ModuleResolutionKind.Bundler) {
|
|
495
|
-
tsconfigJson.compilerOptions.moduleResolution = "Bundler";
|
|
496
|
-
}
|
|
497
|
-
if (tsconfig.options.moduleDetection !== ts2__default.default.ModuleDetectionKind.Force) {
|
|
498
|
-
tsconfigJson.compilerOptions.moduleDetection = "force";
|
|
499
|
-
}
|
|
500
480
|
if (tsconfig.options.esModuleInterop !== true) {
|
|
501
481
|
tsconfigJson.compilerOptions.esModuleInterop = true;
|
|
502
482
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkC3K6TKXH_js = require('./chunk-C3K6TKXH.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 =
|
|
22
|
+
var executor = chunkC3K6TKXH_js.withExecutor("build", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -26,13 +26,12 @@ import chalk5 from 'chalk';
|
|
|
26
26
|
import Handlebars from 'handlebars';
|
|
27
27
|
import { declare } from '@babel/helper-plugin-utils';
|
|
28
28
|
import * as t from '@babel/types';
|
|
29
|
-
import
|
|
29
|
+
import ts, { flattenDiagnosticMessageText } from 'typescript';
|
|
30
30
|
import { getPackageName, hasPackageVersion, getPackageVersion } from '@stryke/string-format/package';
|
|
31
31
|
import { getObjectDiff } from '@donedeal0/superdiff';
|
|
32
32
|
import { readJsonFile, readJsonFileSync } from '@stryke/fs/json';
|
|
33
33
|
import { StormJSON } from '@stryke/json/storm-json';
|
|
34
34
|
import { findFilePath, findFileExtension, relativePath, findFileName, findFileDotExtensionSafe } from '@stryke/path/file-path-fns';
|
|
35
|
-
import { isParentPath } from '@stryke/path/is-parent-path';
|
|
36
35
|
import { titleCase } from '@stryke/string-format/title-case';
|
|
37
36
|
import { existsSync } from '@stryke/fs/exists';
|
|
38
37
|
import { writeFile as writeFile$1 } from '@stryke/fs/write-file';
|
|
@@ -65,6 +64,7 @@ import _fs from 'node:fs';
|
|
|
65
64
|
import { getColor } from '@storm-software/config-tools/utilities/colors';
|
|
66
65
|
import { noop } from '@stryke/helpers/noop';
|
|
67
66
|
import { slash } from '@stryke/path/slash';
|
|
67
|
+
import { isParentPath } from '@stryke/path/is-parent-path';
|
|
68
68
|
import { Volume } from 'memfs';
|
|
69
69
|
import { Union } from 'unionfs';
|
|
70
70
|
import { InMemoryFileSystemHost, Project } from 'ts-morph';
|
|
@@ -379,13 +379,13 @@ function isIncludeMatchFound(tsconfigType, types) {
|
|
|
379
379
|
return findIncludeMatch(tsconfigType, types) !== void 0;
|
|
380
380
|
}
|
|
381
381
|
__name(isIncludeMatchFound, "isIncludeMatchFound");
|
|
382
|
-
function getParsedTypeScriptConfig(workspaceRoot, projectRoot, tsconfig, tsconfigRaw = {}, originalTsconfigJson, host =
|
|
382
|
+
function getParsedTypeScriptConfig(workspaceRoot, projectRoot, tsconfig, tsconfigRaw = {}, originalTsconfigJson, host = ts.sys) {
|
|
383
383
|
const tsconfigFilePath = getTsconfigFilePath(workspaceRoot, projectRoot, tsconfig);
|
|
384
384
|
const tsconfigJson = readJsonFileSync(tsconfigFilePath);
|
|
385
385
|
if (!tsconfigJson) {
|
|
386
386
|
throw new Error(`Cannot find the \`tsconfig.json\` configuration file at ${joinPaths$1(projectRoot, tsconfig ?? "tsconfig.json")}`);
|
|
387
387
|
}
|
|
388
|
-
const parsedCommandLine =
|
|
388
|
+
const parsedCommandLine = ts.parseJsonConfigFileContent(defu5(tsconfigRaw ?? {}, tsconfigJson), host, appendPath(projectRoot, workspaceRoot));
|
|
389
389
|
if (parsedCommandLine.errors.length > 0) {
|
|
390
390
|
const errorMessage = `Cannot parse the TypeScript compiler options. Please investigate the following issues:
|
|
391
391
|
${parsedCommandLine.errors.map((error) => `- ${(error.category !== void 0 && error.code ? `[${error.category}-${error.code}]: ` : "") + error.messageText.toString()}`).join("\n")}
|
|
@@ -426,15 +426,13 @@ async function resolveTsconfigChanges(context) {
|
|
|
426
426
|
const tsconfigJson = await readJsonFile(tsconfigFilePath);
|
|
427
427
|
tsconfigJson.compilerOptions ??= {};
|
|
428
428
|
if (context.config.output.dts !== false) {
|
|
429
|
-
context.
|
|
430
|
-
|
|
431
|
-
context.config.output.dts = joinPaths$1(context.config.output.dts, "powerlines.d.ts");
|
|
429
|
+
if (findFileExtension(context.dtsPath) !== "d.ts" && findFileExtension(context.dtsPath) !== "d.cts" && findFileExtension(context.dtsPath) !== "d.mts") {
|
|
430
|
+
context.config.output.dts = joinPaths$1(context.dtsPath, "powerlines.d.ts");
|
|
432
431
|
}
|
|
433
|
-
const dtsRelativePath = joinPaths$1(relativePath(joinPaths$1(context.workspaceConfig.workspaceRoot, context.config.projectRoot), findFilePath(context.
|
|
432
|
+
const dtsRelativePath = joinPaths$1(relativePath(joinPaths$1(context.workspaceConfig.workspaceRoot, context.config.projectRoot), findFilePath(context.dtsPath)), findFileName(context.dtsPath));
|
|
434
433
|
if (!tsconfigJson.include?.some((filePattern) => isIncludeMatchFound(filePattern, [
|
|
435
|
-
|
|
436
|
-
dtsRelativePath
|
|
437
|
-
"storm.d.ts"
|
|
434
|
+
context.dtsPath,
|
|
435
|
+
dtsRelativePath
|
|
438
436
|
]))) {
|
|
439
437
|
tsconfigJson.include ??= [];
|
|
440
438
|
tsconfigJson.include.push(dtsRelativePath.startsWith("./") ? dtsRelativePath.slice(2) : dtsRelativePath);
|
|
@@ -449,24 +447,6 @@ async function resolveTsconfigChanges(context) {
|
|
|
449
447
|
tsconfigJson.compilerOptions.lib ??= [];
|
|
450
448
|
tsconfigJson.compilerOptions.lib.push("esnext");
|
|
451
449
|
}
|
|
452
|
-
if (tsconfig.options.module !== ts2.ModuleKind.ESNext) {
|
|
453
|
-
tsconfigJson.compilerOptions.module = "ESNext";
|
|
454
|
-
}
|
|
455
|
-
if (!tsconfig.options.target || ![
|
|
456
|
-
ts2.ScriptTarget.ESNext,
|
|
457
|
-
ts2.ScriptTarget.ES2024,
|
|
458
|
-
ts2.ScriptTarget.ES2023,
|
|
459
|
-
ts2.ScriptTarget.ES2022,
|
|
460
|
-
ts2.ScriptTarget.ES2021
|
|
461
|
-
].includes(tsconfig.options.target)) {
|
|
462
|
-
tsconfigJson.compilerOptions.target = "ESNext";
|
|
463
|
-
}
|
|
464
|
-
if (tsconfig.options.moduleResolution !== ts2.ModuleResolutionKind.Bundler) {
|
|
465
|
-
tsconfigJson.compilerOptions.moduleResolution = "Bundler";
|
|
466
|
-
}
|
|
467
|
-
if (tsconfig.options.moduleDetection !== ts2.ModuleDetectionKind.Force) {
|
|
468
|
-
tsconfigJson.compilerOptions.moduleDetection = "force";
|
|
469
|
-
}
|
|
470
450
|
if (tsconfig.options.esModuleInterop !== true) {
|
|
471
451
|
tsconfigJson.compilerOptions.esModuleInterop = true;
|
|
472
452
|
}
|
|
@@ -61,9 +61,7 @@ function createNxPlugin(opts) {
|
|
|
61
61
|
return {};
|
|
62
62
|
}
|
|
63
63
|
const root = getRoot(projectRoot, context);
|
|
64
|
-
|
|
65
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);
|
|
66
|
-
}
|
|
64
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);
|
|
67
65
|
const userConfig = await loadUserConfigFile(projectRoot, contextV2.workspaceRoot, resolver, "build", "development", configFile, framework);
|
|
68
66
|
if (!existsSync(joinPaths(contextV2.workspaceRoot, projectRoot, "package.json"))) {
|
|
69
67
|
console.warn(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Cannot find \`package.json\` file in the project's root directory (path: "${joinPaths(contextV2.workspaceRoot, projectRoot)}"). Skipping project configuration.`);
|
|
@@ -76,9 +74,7 @@ function createNxPlugin(opts) {
|
|
|
76
74
|
}
|
|
77
75
|
const packageJson = JSON.parse(packageJsonContent);
|
|
78
76
|
if (!userConfig.configFile && !packageJson?.storm) {
|
|
79
|
-
|
|
80
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);
|
|
81
|
-
}
|
|
77
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);
|
|
82
78
|
return {};
|
|
83
79
|
}
|
|
84
80
|
const projectConfig = getProjectConfigFromProjectRoot(projectRoot, packageJson);
|
|
@@ -87,9 +83,7 @@ function createNxPlugin(opts) {
|
|
|
87
83
|
return {};
|
|
88
84
|
}
|
|
89
85
|
const targets = readTargetsFromPackageJson(packageJson, nxJson, projectRoot, context.workspaceRoot);
|
|
90
|
-
|
|
91
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);
|
|
92
|
-
}
|
|
86
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);
|
|
93
87
|
if (options?.clean !== false && !targets[options?.clean?.targetName || "clean"]) {
|
|
94
88
|
targets[options?.clean?.targetName || "clean"] = {
|
|
95
89
|
inputs: Array.isArray(options?.clean?.inputs) ? options.clean.inputs : withNamedInputs(targetInputs, [
|
|
@@ -97,7 +91,7 @@ function createNxPlugin(opts) {
|
|
|
97
91
|
]),
|
|
98
92
|
outputs: options?.clean?.outputs,
|
|
99
93
|
executor: options?.clean?.executor || `@${framework}/nx:${options?.clean?.targetName || "clean"}`,
|
|
100
|
-
dependsOn: [
|
|
94
|
+
dependsOn: options?.clean?.dependsOn ?? [
|
|
101
95
|
`^${options?.clean?.targetName || "clean"}`
|
|
102
96
|
],
|
|
103
97
|
defaultConfiguration: options?.clean?.defaultConfiguration || "production",
|
|
@@ -130,7 +124,7 @@ function createNxPlugin(opts) {
|
|
|
130
124
|
artifactsFolder
|
|
131
125
|
],
|
|
132
126
|
executor: options?.prepare?.executor || `@${framework}/nx:${options?.prepare?.targetName || "prepare"}`,
|
|
133
|
-
dependsOn: [
|
|
127
|
+
dependsOn: options?.prepare?.dependsOn ?? [
|
|
134
128
|
`^${options?.prepare?.targetName || "prepare"}`,
|
|
135
129
|
options?.clean !== false && `${options?.clean?.targetName || "clean"}`
|
|
136
130
|
].filter(Boolean),
|
|
@@ -164,7 +158,7 @@ function createNxPlugin(opts) {
|
|
|
164
158
|
"{options.outputPath}"
|
|
165
159
|
],
|
|
166
160
|
executor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || "build"}`,
|
|
167
|
-
dependsOn: [
|
|
161
|
+
dependsOn: options?.build?.dependsOn ?? [
|
|
168
162
|
`^${options?.build?.targetName || "build"}`,
|
|
169
163
|
options?.prepare !== false && `${options?.prepare?.targetName || "prepare"}`
|
|
170
164
|
].filter(Boolean),
|
|
@@ -205,7 +199,7 @@ function createNxPlugin(opts) {
|
|
|
205
199
|
"{options.outputPath}"
|
|
206
200
|
],
|
|
207
201
|
executor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || "lint"}`,
|
|
208
|
-
dependsOn: [
|
|
202
|
+
dependsOn: options?.lint?.dependsOn ?? [
|
|
209
203
|
`^${options?.lint?.targetName || "lint"}`,
|
|
210
204
|
options?.prepare !== false && `${options?.prepare?.targetName || "prepare"}`
|
|
211
205
|
].filter(Boolean),
|
|
@@ -245,7 +239,7 @@ function createNxPlugin(opts) {
|
|
|
245
239
|
"{options.outputPath}"
|
|
246
240
|
],
|
|
247
241
|
executor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || "docs"}`,
|
|
248
|
-
dependsOn: [
|
|
242
|
+
dependsOn: options?.docs?.dependsOn ?? [
|
|
249
243
|
`^${options?.docs?.targetName || "docs"}`,
|
|
250
244
|
options?.build !== false && `${options?.build?.targetName || "build"}`
|
|
251
245
|
].filter(Boolean),
|
|
@@ -285,7 +279,7 @@ function createNxPlugin(opts) {
|
|
|
285
279
|
"{options.outputPath}"
|
|
286
280
|
],
|
|
287
281
|
executor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || "deploy"}`,
|
|
288
|
-
dependsOn: [
|
|
282
|
+
dependsOn: options?.deploy?.dependsOn ?? [
|
|
289
283
|
`^${options?.deploy?.targetName || "deploy"}`,
|
|
290
284
|
options?.build !== false && `${options?.build?.targetName || "build"}`
|
|
291
285
|
].filter(Boolean),
|
|
@@ -314,9 +308,7 @@ function createNxPlugin(opts) {
|
|
|
314
308
|
addProjectTag(projectConfig, framework, projectConfig.projectType || userConfig.type || "library", {
|
|
315
309
|
overwrite: true
|
|
316
310
|
});
|
|
317
|
-
|
|
318
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
|
|
319
|
-
}
|
|
311
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
|
|
320
312
|
return {
|
|
321
313
|
projects: {
|
|
322
314
|
[root]: defu(projectConfig, {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkXZORJRHX_js = require('./chunk-XZORJRHX.js');
|
|
4
4
|
|
|
5
5
|
// src/plugin/index.ts
|
|
6
|
-
var createNodesV2 =
|
|
6
|
+
var createNodesV2 = chunkXZORJRHX_js.createNxPlugin({
|
|
7
7
|
framework: "powerlines"
|
|
8
8
|
});
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkC3K6TKXH_js = require('./chunk-C3K6TKXH.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 =
|
|
14
|
+
var executor = chunkC3K6TKXH_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -67,9 +67,7 @@ function createNxPlugin(opts) {
|
|
|
67
67
|
return {};
|
|
68
68
|
}
|
|
69
69
|
const root = pluginHelpers.getRoot(projectRoot, context);
|
|
70
|
-
|
|
71
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);
|
|
72
|
-
}
|
|
70
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);
|
|
73
71
|
const userConfig = await chunk2PYUYDPD_js.loadUserConfigFile(projectRoot, contextV2.workspaceRoot, resolver, "build", "development", configFile, framework);
|
|
74
72
|
if (!exists.existsSync(joinPaths.joinPaths(contextV2.workspaceRoot, projectRoot, "package.json"))) {
|
|
75
73
|
console.warn(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Cannot find \`package.json\` file in the project's root directory (path: "${joinPaths.joinPaths(contextV2.workspaceRoot, projectRoot)}"). Skipping project configuration.`);
|
|
@@ -82,9 +80,7 @@ function createNxPlugin(opts) {
|
|
|
82
80
|
}
|
|
83
81
|
const packageJson = JSON.parse(packageJsonContent);
|
|
84
82
|
if (!userConfig.configFile && !packageJson?.storm) {
|
|
85
|
-
|
|
86
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);
|
|
87
|
-
}
|
|
83
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);
|
|
88
84
|
return {};
|
|
89
85
|
}
|
|
90
86
|
const projectConfig = pluginHelpers.getProjectConfigFromProjectRoot(projectRoot, packageJson);
|
|
@@ -93,9 +89,7 @@ function createNxPlugin(opts) {
|
|
|
93
89
|
return {};
|
|
94
90
|
}
|
|
95
91
|
const targets = packageJson_js.readTargetsFromPackageJson(packageJson, nxJson$1, projectRoot, context.workspaceRoot);
|
|
96
|
-
|
|
97
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);
|
|
98
|
-
}
|
|
92
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);
|
|
99
93
|
if (options?.clean !== false && !targets[options?.clean?.targetName || "clean"]) {
|
|
100
94
|
targets[options?.clean?.targetName || "clean"] = {
|
|
101
95
|
inputs: Array.isArray(options?.clean?.inputs) ? options.clean.inputs : nxJson.withNamedInputs(targetInputs, [
|
|
@@ -103,7 +97,7 @@ function createNxPlugin(opts) {
|
|
|
103
97
|
]),
|
|
104
98
|
outputs: options?.clean?.outputs,
|
|
105
99
|
executor: options?.clean?.executor || `@${framework}/nx:${options?.clean?.targetName || "clean"}`,
|
|
106
|
-
dependsOn: [
|
|
100
|
+
dependsOn: options?.clean?.dependsOn ?? [
|
|
107
101
|
`^${options?.clean?.targetName || "clean"}`
|
|
108
102
|
],
|
|
109
103
|
defaultConfiguration: options?.clean?.defaultConfiguration || "production",
|
|
@@ -136,7 +130,7 @@ function createNxPlugin(opts) {
|
|
|
136
130
|
artifactsFolder
|
|
137
131
|
],
|
|
138
132
|
executor: options?.prepare?.executor || `@${framework}/nx:${options?.prepare?.targetName || "prepare"}`,
|
|
139
|
-
dependsOn: [
|
|
133
|
+
dependsOn: options?.prepare?.dependsOn ?? [
|
|
140
134
|
`^${options?.prepare?.targetName || "prepare"}`,
|
|
141
135
|
options?.clean !== false && `${options?.clean?.targetName || "clean"}`
|
|
142
136
|
].filter(Boolean),
|
|
@@ -170,7 +164,7 @@ function createNxPlugin(opts) {
|
|
|
170
164
|
"{options.outputPath}"
|
|
171
165
|
],
|
|
172
166
|
executor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || "build"}`,
|
|
173
|
-
dependsOn: [
|
|
167
|
+
dependsOn: options?.build?.dependsOn ?? [
|
|
174
168
|
`^${options?.build?.targetName || "build"}`,
|
|
175
169
|
options?.prepare !== false && `${options?.prepare?.targetName || "prepare"}`
|
|
176
170
|
].filter(Boolean),
|
|
@@ -211,7 +205,7 @@ function createNxPlugin(opts) {
|
|
|
211
205
|
"{options.outputPath}"
|
|
212
206
|
],
|
|
213
207
|
executor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || "lint"}`,
|
|
214
|
-
dependsOn: [
|
|
208
|
+
dependsOn: options?.lint?.dependsOn ?? [
|
|
215
209
|
`^${options?.lint?.targetName || "lint"}`,
|
|
216
210
|
options?.prepare !== false && `${options?.prepare?.targetName || "prepare"}`
|
|
217
211
|
].filter(Boolean),
|
|
@@ -251,7 +245,7 @@ function createNxPlugin(opts) {
|
|
|
251
245
|
"{options.outputPath}"
|
|
252
246
|
],
|
|
253
247
|
executor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || "docs"}`,
|
|
254
|
-
dependsOn: [
|
|
248
|
+
dependsOn: options?.docs?.dependsOn ?? [
|
|
255
249
|
`^${options?.docs?.targetName || "docs"}`,
|
|
256
250
|
options?.build !== false && `${options?.build?.targetName || "build"}`
|
|
257
251
|
].filter(Boolean),
|
|
@@ -291,7 +285,7 @@ function createNxPlugin(opts) {
|
|
|
291
285
|
"{options.outputPath}"
|
|
292
286
|
],
|
|
293
287
|
executor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || "deploy"}`,
|
|
294
|
-
dependsOn: [
|
|
288
|
+
dependsOn: options?.deploy?.dependsOn ?? [
|
|
295
289
|
`^${options?.deploy?.targetName || "deploy"}`,
|
|
296
290
|
options?.build !== false && `${options?.build?.targetName || "build"}`
|
|
297
291
|
].filter(Boolean),
|
|
@@ -320,9 +314,7 @@ function createNxPlugin(opts) {
|
|
|
320
314
|
projectTags.addProjectTag(projectConfig, framework, projectConfig.projectType || userConfig.type || "library", {
|
|
321
315
|
overwrite: true
|
|
322
316
|
});
|
|
323
|
-
|
|
324
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
|
|
325
|
-
}
|
|
317
|
+
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
|
|
326
318
|
return {
|
|
327
319
|
projects: {
|
|
328
320
|
[root]: defu__default.default(projectConfig, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkC3K6TKXH_js = require('./chunk-C3K6TKXH.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 =
|
|
14
|
+
var executor = chunkC3K6TKXH_js.withExecutor("clean", 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
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
require('./chunk-
|
|
4
|
+
var chunkUZF6PHPR_js = require('./chunk-UZF6PHPR.js');
|
|
5
|
+
var chunk53FEJYJL_js = require('./chunk-53FEJYJL.js');
|
|
6
|
+
var chunkD4UEK625_js = require('./chunk-D4UEK625.js');
|
|
7
|
+
var chunkZH5WF5UY_js = require('./chunk-ZH5WF5UY.js');
|
|
8
|
+
var chunk5HP24RWY_js = require('./chunk-5HP24RWY.js');
|
|
9
|
+
require('./chunk-C3K6TKXH.js');
|
|
10
10
|
require('./chunk-2PYUYDPD.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
|
|
17
|
+
get: function () { return chunkUZF6PHPR_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk53FEJYJL_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkD4UEK625_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkZH5WF5UY_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunk5HP24RWY_js.executor_default; }
|
|
34
34
|
});
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import './chunk-UV4HQO3Y.mjs';
|
|
2
|
-
export { executor_default as lint } from './chunk-
|
|
3
|
-
export { executor_default as prepare } from './chunk-
|
|
4
|
-
export { executor_default as build } from './chunk-
|
|
5
|
-
export { executor_default as clean } from './chunk-
|
|
6
|
-
export { executor_default as docs } from './chunk-
|
|
7
|
-
import './chunk-
|
|
2
|
+
export { executor_default as lint } from './chunk-32H4LR4S.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-EKHF27MZ.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-YMEHBI54.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-LLXWCS4O.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-R6CZOQMS.mjs';
|
|
7
|
+
import './chunk-HI5N4XXZ.mjs';
|
|
8
8
|
import './chunk-WGIN2BGP.mjs';
|
|
9
9
|
import './chunk-O6YSETKJ.mjs';
|
package/dist/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkRWFBSRGJ_js = require('./chunk-RWFBSRGJ.js');
|
|
4
4
|
require('./chunk-XO62WWX4.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
5
|
+
var chunkUZF6PHPR_js = require('./chunk-UZF6PHPR.js');
|
|
6
|
+
var chunk53FEJYJL_js = require('./chunk-53FEJYJL.js');
|
|
7
|
+
var chunkD4UEK625_js = require('./chunk-D4UEK625.js');
|
|
8
|
+
var chunkZH5WF5UY_js = require('./chunk-ZH5WF5UY.js');
|
|
9
|
+
var chunk5HP24RWY_js = require('./chunk-5HP24RWY.js');
|
|
10
10
|
require('./chunk-N2YKXZ5R.js');
|
|
11
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
12
|
-
require('./chunk-
|
|
13
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-C3K6TKXH.js');
|
|
13
|
+
require('./chunk-XZORJRHX.js');
|
|
14
14
|
require('./chunk-2PYUYDPD.js');
|
|
15
15
|
require('./chunk-IQVSZEQ6.js');
|
|
16
16
|
require('./chunk-SHUYVCID.js');
|
|
@@ -19,27 +19,27 @@ require('./chunk-SHUYVCID.js');
|
|
|
19
19
|
|
|
20
20
|
Object.defineProperty(exports, "createNodesV2", {
|
|
21
21
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkRWFBSRGJ_js.createNodesV2; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "lint", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkUZF6PHPR_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunk53FEJYJL_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkD4UEK625_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkZH5WF5UY_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunk5HP24RWY_js.executor_default; }
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(exports, "sync", {
|
|
45
45
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { createNodesV2 } from './chunk-
|
|
1
|
+
export { createNodesV2 } from './chunk-KTB7KDCP.mjs';
|
|
2
2
|
import './chunk-UV4HQO3Y.mjs';
|
|
3
|
-
export { executor_default as lint } from './chunk-
|
|
4
|
-
export { executor_default as prepare } from './chunk-
|
|
5
|
-
export { executor_default as build } from './chunk-
|
|
6
|
-
export { executor_default as clean } from './chunk-
|
|
7
|
-
export { executor_default as docs } from './chunk-
|
|
3
|
+
export { executor_default as lint } from './chunk-32H4LR4S.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-EKHF27MZ.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-YMEHBI54.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-LLXWCS4O.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-R6CZOQMS.mjs';
|
|
8
8
|
import './chunk-23KFTIT2.mjs';
|
|
9
9
|
export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
|
|
10
|
-
import './chunk-
|
|
11
|
-
import './chunk-
|
|
10
|
+
import './chunk-HI5N4XXZ.mjs';
|
|
11
|
+
import './chunk-Q3ODFYEY.mjs';
|
|
12
12
|
import './chunk-WGIN2BGP.mjs';
|
|
13
13
|
import './chunk-IC47MFKB.mjs';
|
|
14
14
|
import './chunk-O6YSETKJ.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkC3K6TKXH_js = require('../../chunk-C3K6TKXH.js');
|
|
4
4
|
require('../../chunk-2PYUYDPD.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
|
|
11
|
+
get: function () { return chunkC3K6TKXH_js.withExecutor; }
|
|
12
12
|
});
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkD4UEK625_js = require('../../../chunk-D4UEK625.js');
|
|
6
|
+
require('../../../chunk-C3K6TKXH.js');
|
|
7
7
|
require('../../../chunk-2PYUYDPD.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
|
|
14
|
+
get: function () { return chunkD4UEK625_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkD4UEK625_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-YMEHBI54.mjs';
|
|
2
|
+
import '../../../chunk-HI5N4XXZ.mjs';
|
|
3
3
|
import '../../../chunk-WGIN2BGP.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
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkZH5WF5UY_js = require('../../../chunk-ZH5WF5UY.js');
|
|
6
|
+
require('../../../chunk-C3K6TKXH.js');
|
|
7
7
|
require('../../../chunk-2PYUYDPD.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
|
|
14
|
+
get: function () { return chunkZH5WF5UY_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkZH5WF5UY_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-LLXWCS4O.mjs';
|
|
2
|
+
import '../../../chunk-HI5N4XXZ.mjs';
|
|
3
3
|
import '../../../chunk-WGIN2BGP.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
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunk5HP24RWY_js = require('../../../chunk-5HP24RWY.js');
|
|
6
|
+
require('../../../chunk-C3K6TKXH.js');
|
|
7
7
|
require('../../../chunk-2PYUYDPD.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
|
|
14
|
+
get: function () { return chunk5HP24RWY_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk5HP24RWY_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-R6CZOQMS.mjs';
|
|
2
|
+
import '../../../chunk-HI5N4XXZ.mjs';
|
|
3
3
|
import '../../../chunk-WGIN2BGP.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
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkUZF6PHPR_js = require('../../../chunk-UZF6PHPR.js');
|
|
6
|
+
require('../../../chunk-C3K6TKXH.js');
|
|
7
7
|
require('../../../chunk-2PYUYDPD.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
|
|
14
|
+
get: function () { return chunkUZF6PHPR_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkUZF6PHPR_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-32H4LR4S.mjs';
|
|
2
|
+
import '../../../chunk-HI5N4XXZ.mjs';
|
|
3
3
|
import '../../../chunk-WGIN2BGP.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
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunk53FEJYJL_js = require('../../../chunk-53FEJYJL.js');
|
|
6
|
+
require('../../../chunk-C3K6TKXH.js');
|
|
7
7
|
require('../../../chunk-2PYUYDPD.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
|
|
14
|
+
get: function () { return chunk53FEJYJL_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk53FEJYJL_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-EKHF27MZ.mjs';
|
|
2
|
+
import '../../../chunk-HI5N4XXZ.mjs';
|
|
3
3
|
import '../../../chunk-WGIN2BGP.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkXZORJRHX_js = require('../../chunk-XZORJRHX.js');
|
|
4
4
|
require('../../chunk-2PYUYDPD.js');
|
|
5
5
|
require('../../chunk-IQVSZEQ6.js');
|
|
6
6
|
require('../../chunk-SHUYVCID.js');
|
|
@@ -9,13 +9,13 @@ require('../../chunk-SHUYVCID.js');
|
|
|
9
9
|
|
|
10
10
|
Object.defineProperty(exports, "createNxPlugin", {
|
|
11
11
|
enumerable: true,
|
|
12
|
-
get: function () { return
|
|
12
|
+
get: function () { return chunkXZORJRHX_js.createNxPlugin; }
|
|
13
13
|
});
|
|
14
14
|
Object.defineProperty(exports, "getNxPluginInputs", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunkXZORJRHX_js.getNxPluginInputs; }
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "getNxTargetInputs", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
20
|
+
get: function () { return chunkXZORJRHX_js.getNxTargetInputs; }
|
|
21
21
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-
|
|
1
|
+
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-Q3ODFYEY.mjs';
|
|
2
2
|
import '../../chunk-WGIN2BGP.mjs';
|
|
3
3
|
import '../../chunk-IC47MFKB.mjs';
|
|
4
4
|
import '../../chunk-O6YSETKJ.mjs';
|
package/dist/src/plugin/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var chunkRWFBSRGJ_js = require('../../chunk-RWFBSRGJ.js');
|
|
4
|
+
require('../../chunk-XZORJRHX.js');
|
|
5
5
|
require('../../chunk-2PYUYDPD.js');
|
|
6
6
|
require('../../chunk-IQVSZEQ6.js');
|
|
7
7
|
require('../../chunk-SHUYVCID.js');
|
|
@@ -10,5 +10,5 @@ require('../../chunk-SHUYVCID.js');
|
|
|
10
10
|
|
|
11
11
|
Object.defineProperty(exports, "createNodesV2", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkRWFBSRGJ_js.createNodesV2; }
|
|
14
14
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { createNodesV2 } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { createNodesV2 } from '../../chunk-KTB7KDCP.mjs';
|
|
2
|
+
import '../../chunk-Q3ODFYEY.mjs';
|
|
3
3
|
import '../../chunk-WGIN2BGP.mjs';
|
|
4
4
|
import '../../chunk-IC47MFKB.mjs';
|
|
5
5
|
import '../../chunk-O6YSETKJ.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/nx",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.37",
|
|
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.1.1",
|
|
199
|
-
"powerlines": "^0.24.
|
|
199
|
+
"powerlines": "^0.24.9"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
202
|
"@nx/workspace": "^22.1.1",
|
|
@@ -210,5 +210,5 @@
|
|
|
210
210
|
"publishConfig": { "access": "public" },
|
|
211
211
|
"executors": "./executors.json",
|
|
212
212
|
"generators": "./generators.json",
|
|
213
|
-
"gitHead": "
|
|
213
|
+
"gitHead": "f94faa2b9a45bd52520ad93e91c5898e0f1f18a5"
|
|
214
214
|
}
|