@powerlines/nx 0.11.219 → 0.11.221
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 +16 -0
- package/dist/{chunk-WXALQB3J.js → chunk-3D3MU5VP.js} +2 -2
- package/dist/{chunk-HNRM52ID.js → chunk-ADMWJVSB.js} +31 -31
- package/dist/{chunk-MYNOF2F6.js → chunk-DXL4NVUO.js} +2 -2
- package/dist/{chunk-K6HPKAIP.js → chunk-F4QJKUNK.js} +2 -2
- package/dist/{chunk-FIOTA3DI.mjs → chunk-IDXFQ2WL.mjs} +1 -1
- package/dist/{chunk-RLKRZBG3.mjs → chunk-NB2KHU33.mjs} +1 -1
- package/dist/{chunk-GJ62I4AV.js → chunk-NXR5JH7F.js} +2 -2
- package/dist/{chunk-QA32JCA6.js → chunk-P5X6KXLE.js} +2 -2
- package/dist/{chunk-ULCS2R4D.mjs → chunk-PKGTRC56.mjs} +1 -1
- package/dist/{chunk-KAY4UTGV.js → chunk-PMQ5YVLP.js} +2 -2
- package/dist/{chunk-ZODDB4GG.js → chunk-R577MOZR.js} +30 -30
- package/dist/{chunk-7EWOPOET.mjs → chunk-RBIHD4JS.mjs} +2 -2
- package/dist/{chunk-IA3YWWWC.mjs → chunk-RLYU2FOM.mjs} +29 -29
- package/dist/{chunk-QN6ZKFPV.mjs → chunk-SQV3SFA4.mjs} +1 -1
- package/dist/{chunk-4KF5AUPD.mjs → chunk-WIPWBPB3.mjs} +1 -1
- package/dist/{chunk-GB6SETBZ.mjs → chunk-ZERXJ7S6.mjs} +1 -1
- package/dist/executors.js +12 -12
- package/dist/executors.mjs +7 -7
- package/dist/index.js +15 -15
- package/dist/index.mjs +9 -9
- package/dist/src/base/base-executor.js +3 -3
- package/dist/src/base/base-executor.mjs +2 -2
- package/dist/src/executors/build/executor.js +5 -5
- package/dist/src/executors/build/executor.mjs +3 -3
- package/dist/src/executors/clean/executor.js +5 -5
- package/dist/src/executors/clean/executor.mjs +3 -3
- package/dist/src/executors/docs/executor.js +5 -5
- package/dist/src/executors/docs/executor.mjs +3 -3
- package/dist/src/executors/lint/executor.js +5 -5
- package/dist/src/executors/lint/executor.mjs +3 -3
- package/dist/src/executors/prepare/executor.js +5 -5
- package/dist/src/executors/prepare/executor.mjs +3 -3
- package/dist/src/helpers/plugin-utilities.d.mts +1 -10
- package/dist/src/helpers/plugin-utilities.d.ts +1 -10
- package/dist/src/helpers/plugin-utilities.js +5 -5
- package/dist/src/helpers/plugin-utilities.mjs +2 -2
- package/dist/src/plugin/index.js +4 -4
- package/dist/src/plugin/index.mjs +3 -3
- package/dist/src/types/plugin.d.mts +15 -6
- package/dist/src/types/plugin.d.ts +15 -6
- package/package.json +11 -11
- /package/dist/{chunk-FSGRYCTL.js → chunk-RLODK6TM.js} +0 -0
- /package/dist/{chunk-JL4HQ7ZD.mjs → chunk-W75JGXP2.mjs} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ROOT_HASH_LENGTH, loadUserConfigFile } from './chunk-
|
|
1
|
+
import { ROOT_HASH_LENGTH, loadUserConfigFile } from './chunk-W75JGXP2.mjs';
|
|
2
2
|
import { CONFIG_INPUTS } from './chunk-IC47MFKB.mjs';
|
|
3
3
|
import { __name } from './chunk-O6YSETKJ.mjs';
|
|
4
4
|
import { createNodesFromFiles } from '@nx/devkit';
|
|
@@ -28,18 +28,19 @@ function getNxPluginInputs(framework) {
|
|
|
28
28
|
}
|
|
29
29
|
__name(getNxPluginInputs, "getNxPluginInputs");
|
|
30
30
|
function createNxPlugin(opts) {
|
|
31
|
+
const framework = opts?.framework || "powerlines";
|
|
32
|
+
const title = `${titleCase(framework)} Nx Plugin`;
|
|
31
33
|
try {
|
|
32
|
-
const framework = opts?.framework || "powerlines";
|
|
33
34
|
const name = opts?.name || `${framework}/nx/plugin`;
|
|
34
35
|
const artifactsFolder = opts?.artifactsFolder || `{projectRoot}/.${framework}`;
|
|
35
36
|
const targetInputs = getNxTargetInputs(framework);
|
|
36
37
|
const pluginInputs = getNxPluginInputs(framework);
|
|
37
|
-
if (opts?.verboseOutput) {
|
|
38
|
-
console.debug(`[${name}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Initializing the ${titleCase(framework)} Nx plugin for the following inputs: ${pluginInputs}`);
|
|
39
|
-
}
|
|
40
38
|
return [
|
|
41
39
|
pluginInputs,
|
|
42
40
|
async (configFiles, options, contextV2) => {
|
|
41
|
+
if (options?.verboseOutput) {
|
|
42
|
+
console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Initializing the ${title} for the following inputs: ${pluginInputs}`);
|
|
43
|
+
}
|
|
43
44
|
const envPaths = getEnvPaths({
|
|
44
45
|
orgId: "storm-software",
|
|
45
46
|
appId: framework,
|
|
@@ -61,44 +62,44 @@ function createNxPlugin(opts) {
|
|
|
61
62
|
try {
|
|
62
63
|
const projectRoot = getProjectRoot(configFile, contextV2.workspaceRoot);
|
|
63
64
|
if (!projectRoot) {
|
|
64
|
-
console.error(`[${
|
|
65
|
+
console.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - package.json and ${framework} configuration files (i.e. ${framework}.config.ts) must be located in the project root directory: ${configFile}`);
|
|
65
66
|
return {};
|
|
66
67
|
}
|
|
67
68
|
const root = getRoot(projectRoot, context);
|
|
68
|
-
if (
|
|
69
|
-
console.debug(`[${
|
|
69
|
+
if (options?.verboseOutput) {
|
|
70
|
+
console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);
|
|
70
71
|
}
|
|
71
72
|
const userConfig = await loadUserConfigFile(projectRoot, contextV2.workspaceRoot, resolver, "build", "development", configFile, framework);
|
|
72
73
|
if (!existsSync(joinPaths(contextV2.workspaceRoot, projectRoot, "package.json"))) {
|
|
73
|
-
if (
|
|
74
|
-
console.warn(`[${
|
|
74
|
+
if (options?.verboseOutput) {
|
|
75
|
+
console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Cannot find \`package.json\` file in the project's root directory (path: "${joinPaths(contextV2.workspaceRoot, projectRoot)}"). Skipping project configuration.`);
|
|
75
76
|
}
|
|
76
77
|
return {};
|
|
77
78
|
}
|
|
78
79
|
const packageJsonContent = await readFile(joinPaths(contextV2.workspaceRoot, projectRoot, "package.json"), "utf8");
|
|
79
80
|
if (!packageJsonContent) {
|
|
80
|
-
if (
|
|
81
|
-
console.warn(`[${
|
|
81
|
+
if (options?.verboseOutput) {
|
|
82
|
+
console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - No package.json file found for project in root directory ${projectRoot}`);
|
|
82
83
|
}
|
|
83
84
|
return {};
|
|
84
85
|
}
|
|
85
86
|
const packageJson = JSON.parse(packageJsonContent);
|
|
86
87
|
if (!userConfig.configFile && !packageJson?.storm) {
|
|
87
|
-
if (
|
|
88
|
-
console.debug(`[${
|
|
88
|
+
if (options?.verboseOutput) {
|
|
89
|
+
console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);
|
|
89
90
|
}
|
|
90
91
|
return {};
|
|
91
92
|
}
|
|
92
93
|
const projectConfig = getProjectConfigFromProjectRoot(projectRoot, packageJson);
|
|
93
94
|
if (!projectConfig) {
|
|
94
|
-
if (
|
|
95
|
-
console.warn(`[${
|
|
95
|
+
if (options?.verboseOutput) {
|
|
96
|
+
console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - No project configuration found for project in root directory ${projectRoot}`);
|
|
96
97
|
}
|
|
97
98
|
return {};
|
|
98
99
|
}
|
|
99
100
|
const targets = readTargetsFromPackageJson(packageJson, nxJson, projectRoot, context.workspaceRoot);
|
|
100
|
-
if (
|
|
101
|
-
console.debug(`[${
|
|
101
|
+
if (options?.verboseOutput) {
|
|
102
|
+
console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);
|
|
102
103
|
}
|
|
103
104
|
if (options?.clean !== false && !targets[options?.clean?.targetName || "clean"]) {
|
|
104
105
|
targets[options?.clean?.targetName || "clean"] = {
|
|
@@ -330,8 +331,8 @@ function createNxPlugin(opts) {
|
|
|
330
331
|
addProjectTag(projectConfig, framework, projectConfig.projectType || userConfig.projectType || "library", {
|
|
331
332
|
overwrite: true
|
|
332
333
|
});
|
|
333
|
-
if (
|
|
334
|
-
console.debug(`[${
|
|
334
|
+
if (options?.verboseOutput) {
|
|
335
|
+
console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
|
|
335
336
|
}
|
|
336
337
|
return {
|
|
337
338
|
projects: {
|
|
@@ -345,20 +346,19 @@ function createNxPlugin(opts) {
|
|
|
345
346
|
}
|
|
346
347
|
};
|
|
347
348
|
} catch (error) {
|
|
348
|
-
console.error(`[${
|
|
349
|
-
|
|
349
|
+
console.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - ${isError(error) ? error.message : "Unknown fatal error"}`);
|
|
350
|
+
throw new Error(`The ${title} failed to process the project configuration for file ${configFile}. See previous logs for more details.`, {
|
|
351
|
+
cause: error instanceof Error ? error : void 0
|
|
352
|
+
});
|
|
350
353
|
}
|
|
351
354
|
}, configFiles, options, contextV2);
|
|
352
355
|
}
|
|
353
356
|
];
|
|
354
357
|
} catch (error) {
|
|
355
|
-
console.error(`[${
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
return [];
|
|
360
|
-
}
|
|
361
|
-
];
|
|
358
|
+
console.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - ${isError(error) ? error.message : "Unknown fatal error during plugin initialization"}`);
|
|
359
|
+
throw new Error(`Failed to initialize the ${title}. See previous logs for more details.`, {
|
|
360
|
+
cause: error instanceof Error ? error : void 0
|
|
361
|
+
});
|
|
362
362
|
}
|
|
363
363
|
}
|
|
364
364
|
__name(createNxPlugin, "createNxPlugin");
|
package/dist/executors.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
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-
|
|
10
|
-
require('./chunk-
|
|
4
|
+
var chunkDXL4NVUO_js = require('./chunk-DXL4NVUO.js');
|
|
5
|
+
var chunkP5X6KXLE_js = require('./chunk-P5X6KXLE.js');
|
|
6
|
+
var chunk3D3MU5VP_js = require('./chunk-3D3MU5VP.js');
|
|
7
|
+
var chunkPMQ5YVLP_js = require('./chunk-PMQ5YVLP.js');
|
|
8
|
+
var chunkF4QJKUNK_js = require('./chunk-F4QJKUNK.js');
|
|
9
|
+
require('./chunk-R577MOZR.js');
|
|
10
|
+
require('./chunk-RLODK6TM.js');
|
|
11
11
|
require('./chunk-SHUYVCID.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
Object.defineProperty(exports, "lint", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkDXL4NVUO_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkP5X6KXLE_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunk3D3MU5VP_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkPMQ5YVLP_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkF4QJKUNK_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-
|
|
8
|
-
import './chunk-
|
|
2
|
+
export { executor_default as lint } from './chunk-IDXFQ2WL.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-WIPWBPB3.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-NB2KHU33.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-ZERXJ7S6.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-PKGTRC56.mjs';
|
|
7
|
+
import './chunk-RBIHD4JS.mjs';
|
|
8
|
+
import './chunk-W75JGXP2.mjs';
|
|
9
9
|
import './chunk-O6YSETKJ.mjs';
|
package/dist/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkNXR5JH7F_js = require('./chunk-NXR5JH7F.js');
|
|
4
4
|
require('./chunk-XO62WWX4.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
5
|
+
var chunkDXL4NVUO_js = require('./chunk-DXL4NVUO.js');
|
|
6
|
+
var chunkP5X6KXLE_js = require('./chunk-P5X6KXLE.js');
|
|
7
|
+
var chunk3D3MU5VP_js = require('./chunk-3D3MU5VP.js');
|
|
8
|
+
var chunkPMQ5YVLP_js = require('./chunk-PMQ5YVLP.js');
|
|
9
|
+
var chunkF4QJKUNK_js = require('./chunk-F4QJKUNK.js');
|
|
10
10
|
require('./chunk-N2YKXZ5R.js');
|
|
11
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
12
|
-
require('./chunk-
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-R577MOZR.js');
|
|
13
|
+
require('./chunk-ADMWJVSB.js');
|
|
14
|
+
require('./chunk-RLODK6TM.js');
|
|
15
15
|
require('./chunk-IQVSZEQ6.js');
|
|
16
16
|
require('./chunk-SHUYVCID.js');
|
|
17
17
|
|
|
@@ -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 chunkNXR5JH7F_js.createNodesV2; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "lint", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkDXL4NVUO_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkP5X6KXLE_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunk3D3MU5VP_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkPMQ5YVLP_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkF4QJKUNK_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-SQV3SFA4.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-IDXFQ2WL.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-WIPWBPB3.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-NB2KHU33.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-ZERXJ7S6.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-PKGTRC56.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-
|
|
12
|
-
import './chunk-
|
|
10
|
+
import './chunk-RBIHD4JS.mjs';
|
|
11
|
+
import './chunk-RLYU2FOM.mjs';
|
|
12
|
+
import './chunk-W75JGXP2.mjs';
|
|
13
13
|
import './chunk-IC47MFKB.mjs';
|
|
14
14
|
import './chunk-O6YSETKJ.mjs';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var chunkR577MOZR_js = require('../../chunk-R577MOZR.js');
|
|
4
|
+
require('../../chunk-RLODK6TM.js');
|
|
5
5
|
require('../../chunk-SHUYVCID.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "withExecutor", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkR577MOZR_js.withExecutor; }
|
|
12
12
|
});
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { withExecutor } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { withExecutor } from '../../chunk-RBIHD4JS.mjs';
|
|
2
|
+
import '../../chunk-W75JGXP2.mjs';
|
|
3
3
|
import '../../chunk-O6YSETKJ.mjs';
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
5
|
+
var chunk3D3MU5VP_js = require('../../../chunk-3D3MU5VP.js');
|
|
6
|
+
require('../../../chunk-R577MOZR.js');
|
|
7
|
+
require('../../../chunk-RLODK6TM.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunk3D3MU5VP_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk3D3MU5VP_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
3
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-NB2KHU33.mjs';
|
|
2
|
+
import '../../../chunk-RBIHD4JS.mjs';
|
|
3
|
+
import '../../../chunk-W75JGXP2.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
5
|
+
var chunkPMQ5YVLP_js = require('../../../chunk-PMQ5YVLP.js');
|
|
6
|
+
require('../../../chunk-R577MOZR.js');
|
|
7
|
+
require('../../../chunk-RLODK6TM.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkPMQ5YVLP_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkPMQ5YVLP_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
3
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-ZERXJ7S6.mjs';
|
|
2
|
+
import '../../../chunk-RBIHD4JS.mjs';
|
|
3
|
+
import '../../../chunk-W75JGXP2.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
5
|
+
var chunkF4QJKUNK_js = require('../../../chunk-F4QJKUNK.js');
|
|
6
|
+
require('../../../chunk-R577MOZR.js');
|
|
7
|
+
require('../../../chunk-RLODK6TM.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkF4QJKUNK_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkF4QJKUNK_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
3
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-PKGTRC56.mjs';
|
|
2
|
+
import '../../../chunk-RBIHD4JS.mjs';
|
|
3
|
+
import '../../../chunk-W75JGXP2.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
5
|
+
var chunkDXL4NVUO_js = require('../../../chunk-DXL4NVUO.js');
|
|
6
|
+
require('../../../chunk-R577MOZR.js');
|
|
7
|
+
require('../../../chunk-RLODK6TM.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkDXL4NVUO_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkDXL4NVUO_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
3
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-IDXFQ2WL.mjs';
|
|
2
|
+
import '../../../chunk-RBIHD4JS.mjs';
|
|
3
|
+
import '../../../chunk-W75JGXP2.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
5
|
+
var chunkP5X6KXLE_js = require('../../../chunk-P5X6KXLE.js');
|
|
6
|
+
require('../../../chunk-R577MOZR.js');
|
|
7
|
+
require('../../../chunk-RLODK6TM.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkP5X6KXLE_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkP5X6KXLE_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
3
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-WIPWBPB3.mjs';
|
|
2
|
+
import '../../../chunk-RBIHD4JS.mjs';
|
|
3
|
+
import '../../../chunk-W75JGXP2.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -22,7 +22,7 @@ interface CreateNxPluginOptions {
|
|
|
22
22
|
* @remarks
|
|
23
23
|
* This will be used in logging and project tagging.
|
|
24
24
|
*
|
|
25
|
-
* @defaultValue "
|
|
25
|
+
* @defaultValue "\{framework\}/plugin/nx"
|
|
26
26
|
*/
|
|
27
27
|
name?: string;
|
|
28
28
|
/**
|
|
@@ -43,15 +43,6 @@ interface CreateNxPluginOptions {
|
|
|
43
43
|
* @defaultValue "powerlines"
|
|
44
44
|
*/
|
|
45
45
|
framework?: string;
|
|
46
|
-
/**
|
|
47
|
-
* Whether to enable verbose logging for the Nx plugin.
|
|
48
|
-
*
|
|
49
|
-
* @remarks
|
|
50
|
-
* If enabled, the plugin will log more detailed information about its operations, which can be useful for debugging and troubleshooting.
|
|
51
|
-
*
|
|
52
|
-
* @defaultValue false
|
|
53
|
-
*/
|
|
54
|
-
verboseOutput?: boolean;
|
|
55
46
|
}
|
|
56
47
|
/**
|
|
57
48
|
* Creates an Nx plugin that integrates Powerlines into the Nx build process.
|
|
@@ -22,7 +22,7 @@ interface CreateNxPluginOptions {
|
|
|
22
22
|
* @remarks
|
|
23
23
|
* This will be used in logging and project tagging.
|
|
24
24
|
*
|
|
25
|
-
* @defaultValue "
|
|
25
|
+
* @defaultValue "\{framework\}/plugin/nx"
|
|
26
26
|
*/
|
|
27
27
|
name?: string;
|
|
28
28
|
/**
|
|
@@ -43,15 +43,6 @@ interface CreateNxPluginOptions {
|
|
|
43
43
|
* @defaultValue "powerlines"
|
|
44
44
|
*/
|
|
45
45
|
framework?: string;
|
|
46
|
-
/**
|
|
47
|
-
* Whether to enable verbose logging for the Nx plugin.
|
|
48
|
-
*
|
|
49
|
-
* @remarks
|
|
50
|
-
* If enabled, the plugin will log more detailed information about its operations, which can be useful for debugging and troubleshooting.
|
|
51
|
-
*
|
|
52
|
-
* @defaultValue false
|
|
53
|
-
*/
|
|
54
|
-
verboseOutput?: boolean;
|
|
55
46
|
}
|
|
56
47
|
/**
|
|
57
48
|
* Creates an Nx plugin that integrates Powerlines into the Nx build process.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var chunkADMWJVSB_js = require('../../chunk-ADMWJVSB.js');
|
|
4
|
+
require('../../chunk-RLODK6TM.js');
|
|
5
5
|
require('../../chunk-IQVSZEQ6.js');
|
|
6
6
|
require('../../chunk-SHUYVCID.js');
|
|
7
7
|
|
|
@@ -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 chunkADMWJVSB_js.createNxPlugin; }
|
|
13
13
|
});
|
|
14
14
|
Object.defineProperty(exports, "getNxPluginInputs", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunkADMWJVSB_js.getNxPluginInputs; }
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "getNxTargetInputs", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
20
|
+
get: function () { return chunkADMWJVSB_js.getNxTargetInputs; }
|
|
21
21
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-RLYU2FOM.mjs';
|
|
2
|
+
import '../../chunk-W75JGXP2.mjs';
|
|
3
3
|
import '../../chunk-IC47MFKB.mjs';
|
|
4
4
|
import '../../chunk-O6YSETKJ.mjs';
|
package/dist/src/plugin/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
5
|
-
require('../../chunk-
|
|
3
|
+
var chunkNXR5JH7F_js = require('../../chunk-NXR5JH7F.js');
|
|
4
|
+
require('../../chunk-ADMWJVSB.js');
|
|
5
|
+
require('../../chunk-RLODK6TM.js');
|
|
6
6
|
require('../../chunk-IQVSZEQ6.js');
|
|
7
7
|
require('../../chunk-SHUYVCID.js');
|
|
8
8
|
|
|
@@ -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 chunkNXR5JH7F_js.createNodesV2; }
|
|
14
14
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { createNodesV2 } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-
|
|
1
|
+
export { createNodesV2 } from '../../chunk-SQV3SFA4.mjs';
|
|
2
|
+
import '../../chunk-RLYU2FOM.mjs';
|
|
3
|
+
import '../../chunk-W75JGXP2.mjs';
|
|
4
4
|
import '../../chunk-IC47MFKB.mjs';
|
|
5
5
|
import '../../chunk-O6YSETKJ.mjs';
|