@powerlines/nx 0.10.24 → 0.10.27
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 +33 -0
- package/dist/{chunk-LTCZN4I4.js → chunk-2PYUYDPD.js} +11 -19
- package/dist/{chunk-EYCHNX35.js → chunk-2W5L3QE3.js} +2 -2
- package/dist/{chunk-GFUZORW3.js → chunk-2YSHMNU6.js} +2 -2
- package/dist/{chunk-4QIKRF4D.mjs → chunk-DMX7BNND.mjs} +28 -20
- package/dist/{chunk-AQAUVXZI.js → chunk-ELZO2KAE.js} +2 -2
- package/dist/{chunk-PNGMBVSP.mjs → chunk-EWXGKWHK.mjs} +1 -1
- package/dist/{chunk-BGLSTX6F.js → chunk-I7QVZOFS.js} +2 -2
- package/dist/{chunk-JV366LTN.mjs → chunk-LH6XKDMA.mjs} +1 -1
- package/dist/{chunk-RCEEHPJE.mjs → chunk-LQRLEK65.mjs} +1 -1
- package/dist/{chunk-676DOF5H.js → chunk-MAMHMV35.js} +28 -20
- package/dist/{chunk-HJUENOPY.mjs → chunk-U2ZZ4QLS.mjs} +26 -3
- package/dist/{chunk-RAUJ3U2D.js → chunk-UAUZWBTW.js} +34 -11
- package/dist/{chunk-N5IOYNUV.js → chunk-V5EQMHJX.js} +2 -2
- package/dist/{chunk-TSJZC5A3.mjs → chunk-WAXOGGDZ.mjs} +1 -1
- package/dist/{chunk-FMYWKI25.mjs → chunk-WGIN2BGP.mjs} +12 -19
- package/dist/{chunk-ECQAG447.mjs → chunk-WNLIJGN4.mjs} +1 -1
- package/dist/{chunk-R6VKTKIJ.mjs → chunk-Y4WK22DY.mjs} +1 -1
- package/dist/{chunk-PZGSOSV4.js → chunk-YPABMWPC.js} +2 -2
- package/dist/executors.js +12 -12
- package/dist/executors.mjs +7 -7
- package/dist/index.js +18 -18
- 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.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 +24 -0
- package/dist/src/types/plugin.d.ts +24 -0
- package/package.json +10 -10
- package/dist/chunk-62CNXBCW.js +0 -10
- package/dist/chunk-7N6FX55G.js +0 -347
- package/dist/chunk-SAVSMAFN.mjs +0 -8
- package/dist/chunk-XRMEXEW2.mjs +0 -339
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkUAUZWBTW_js = require('./chunk-UAUZWBTW.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 = chunkUAUZWBTW_js.withExecutor("prepare", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { __name } from './chunk-O6YSETKJ.mjs';
|
|
2
2
|
import { getWorkspaceConfig } from '@storm-software/config-tools/get-config';
|
|
3
3
|
import { existsSync } from '@stryke/fs/exists';
|
|
4
|
+
import { appendPath } from '@stryke/path/append';
|
|
4
5
|
import { joinPaths } from '@stryke/path/join-paths';
|
|
6
|
+
import { replacePath } from '@stryke/path/replace';
|
|
5
7
|
import { isFunction } from '@stryke/type-checks/is-function';
|
|
6
8
|
import { isSetObject } from '@stryke/type-checks/is-set-object';
|
|
7
9
|
import { loadConfig } from 'c12';
|
|
@@ -10,7 +12,6 @@ import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
|
10
12
|
import '@stryke/fs/json';
|
|
11
13
|
import '@stryke/fs/list-files';
|
|
12
14
|
import '@stryke/fs/remove-file';
|
|
13
|
-
import { hashDirectory } from '@stryke/hash/hash-files';
|
|
14
15
|
import '@stryke/helpers/get-unique';
|
|
15
16
|
import '@stryke/path/file-path-fns';
|
|
16
17
|
import { kebabCase } from '@stryke/string-format/kebab-case';
|
|
@@ -25,9 +26,15 @@ async function loadWorkspaceConfig(workspaceRoot, cwd) {
|
|
|
25
26
|
}));
|
|
26
27
|
}
|
|
27
28
|
__name(loadWorkspaceConfig, "loadWorkspaceConfig");
|
|
28
|
-
async function loadUserConfigFile(projectRoot, jiti, command, mode, configFile, framework = "powerlines") {
|
|
29
|
+
async function loadUserConfigFile(projectRoot, workspaceRoot, jiti, command, mode = "production", configFile, framework = "powerlines") {
|
|
29
30
|
let resolvedUserConfig = {};
|
|
30
|
-
|
|
31
|
+
let resolvedUserConfigFile;
|
|
32
|
+
if (configFile) {
|
|
33
|
+
resolvedUserConfigFile = existsSync(replacePath(configFile, projectRoot)) ? replacePath(configFile, projectRoot) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), replacePath(configFile, projectRoot))) ? joinPaths(appendPath(projectRoot, workspaceRoot), replacePath(configFile, projectRoot)) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), configFile)) ? joinPaths(appendPath(projectRoot, workspaceRoot), configFile) : void 0;
|
|
34
|
+
}
|
|
35
|
+
if (!resolvedUserConfigFile) {
|
|
36
|
+
resolvedUserConfigFile = existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.ts`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.ts`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.js`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.js`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.mts`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.mts`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.mjs`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.${mode}.config.mjs`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.ts`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.ts`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.js`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.js`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.mts`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.mts`) : existsSync(joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.mjs`)) ? joinPaths(appendPath(projectRoot, workspaceRoot), `${framework}.config.mjs`) : void 0;
|
|
37
|
+
}
|
|
31
38
|
if (resolvedUserConfigFile) {
|
|
32
39
|
const resolved = await jiti.import(jiti.esmResolve(resolvedUserConfigFile));
|
|
33
40
|
if (resolved) {
|
|
@@ -35,7 +42,7 @@ async function loadUserConfigFile(projectRoot, jiti, command, mode, configFile,
|
|
|
35
42
|
if (isFunction(resolved)) {
|
|
36
43
|
config = await Promise.resolve(resolved({
|
|
37
44
|
command,
|
|
38
|
-
mode
|
|
45
|
+
mode,
|
|
39
46
|
isSsrBuild: false,
|
|
40
47
|
isPreview: false
|
|
41
48
|
}));
|
|
@@ -71,20 +78,6 @@ function getPrefixedProjectRootHash(name, projectRootHash) {
|
|
|
71
78
|
return combined.length > PROJECT_ROOT_HASH_LENGTH ? combined.slice(0, PROJECT_ROOT_HASH_LENGTH) : combined;
|
|
72
79
|
}
|
|
73
80
|
__name(getPrefixedProjectRootHash, "getPrefixedProjectRootHash");
|
|
74
|
-
async function getChecksum(path) {
|
|
75
|
-
return hashDirectory(path, {
|
|
76
|
-
ignore: [
|
|
77
|
-
"node_modules",
|
|
78
|
-
".git",
|
|
79
|
-
".nx",
|
|
80
|
-
".cache",
|
|
81
|
-
".storm",
|
|
82
|
-
"tmp",
|
|
83
|
-
"dist"
|
|
84
|
-
]
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
__name(getChecksum, "getChecksum");
|
|
88
81
|
async function writeMetaFile(context) {
|
|
89
82
|
const metaFilePath = joinPaths(context.dataPath, "meta.json");
|
|
90
83
|
context.log(LogLevelLabel.DEBUG, `Writing runtime metadata to ${metaFilePath}`);
|
|
@@ -94,4 +87,4 @@ async function writeMetaFile(context) {
|
|
|
94
87
|
}
|
|
95
88
|
__name(writeMetaFile, "writeMetaFile");
|
|
96
89
|
|
|
97
|
-
export { CACHE_HASH_LENGTH, PROJECT_ROOT_HASH_LENGTH,
|
|
90
|
+
export { CACHE_HASH_LENGTH, PROJECT_ROOT_HASH_LENGTH, getPrefixedProjectRootHash, loadUserConfigFile, loadWorkspaceConfig, writeMetaFile };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkUAUZWBTW_js = require('./chunk-UAUZWBTW.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 = chunkUAUZWBTW_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
package/dist/executors.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
require('./chunk-XO62WWX4.js');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
4
|
+
var chunkYPABMWPC_js = require('./chunk-YPABMWPC.js');
|
|
5
|
+
var chunkV5EQMHJX_js = require('./chunk-V5EQMHJX.js');
|
|
6
|
+
var chunk2W5L3QE3_js = require('./chunk-2W5L3QE3.js');
|
|
7
|
+
var chunkELZO2KAE_js = require('./chunk-ELZO2KAE.js');
|
|
8
|
+
var chunkI7QVZOFS_js = require('./chunk-I7QVZOFS.js');
|
|
9
|
+
require('./chunk-UAUZWBTW.js');
|
|
10
|
+
require('./chunk-2PYUYDPD.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 chunkYPABMWPC_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkV5EQMHJX_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunk2W5L3QE3_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkELZO2KAE_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkI7QVZOFS_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-EWXGKWHK.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-WNLIJGN4.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-LH6XKDMA.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-LQRLEK65.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-WAXOGGDZ.mjs';
|
|
7
|
+
import './chunk-U2ZZ4QLS.mjs';
|
|
8
|
+
import './chunk-WGIN2BGP.mjs';
|
|
9
9
|
import './chunk-O6YSETKJ.mjs';
|
package/dist/index.js
CHANGED
|
@@ -1,41 +1,45 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var chunk2YSHMNU6_js = require('./chunk-2YSHMNU6.js');
|
|
3
4
|
require('./chunk-XO62WWX4.js');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
5
|
+
var chunkYPABMWPC_js = require('./chunk-YPABMWPC.js');
|
|
6
|
+
var chunkV5EQMHJX_js = require('./chunk-V5EQMHJX.js');
|
|
7
|
+
var chunk2W5L3QE3_js = require('./chunk-2W5L3QE3.js');
|
|
8
|
+
var chunkELZO2KAE_js = require('./chunk-ELZO2KAE.js');
|
|
9
|
+
var chunkI7QVZOFS_js = require('./chunk-I7QVZOFS.js');
|
|
9
10
|
require('./chunk-N2YKXZ5R.js');
|
|
10
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
11
|
-
require('./chunk-
|
|
12
|
-
|
|
13
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-UAUZWBTW.js');
|
|
13
|
+
require('./chunk-MAMHMV35.js');
|
|
14
|
+
require('./chunk-2PYUYDPD.js');
|
|
14
15
|
require('./chunk-VIU4CXA3.js');
|
|
15
|
-
require('./chunk-LTCZN4I4.js');
|
|
16
16
|
require('./chunk-SHUYVCID.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
Object.defineProperty(exports, "createNodesV2", {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () { return chunk2YSHMNU6_js.createNodesV2; }
|
|
23
|
+
});
|
|
20
24
|
Object.defineProperty(exports, "lint", {
|
|
21
25
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkYPABMWPC_js.executor_default; }
|
|
23
27
|
});
|
|
24
28
|
Object.defineProperty(exports, "prepare", {
|
|
25
29
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkV5EQMHJX_js.executor_default; }
|
|
27
31
|
});
|
|
28
32
|
Object.defineProperty(exports, "build", {
|
|
29
33
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunk2W5L3QE3_js.executor_default; }
|
|
31
35
|
});
|
|
32
36
|
Object.defineProperty(exports, "clean", {
|
|
33
37
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkELZO2KAE_js.executor_default; }
|
|
35
39
|
});
|
|
36
40
|
Object.defineProperty(exports, "docs", {
|
|
37
41
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkI7QVZOFS_js.executor_default; }
|
|
39
43
|
});
|
|
40
44
|
Object.defineProperty(exports, "sync", {
|
|
41
45
|
enumerable: true,
|
|
@@ -45,7 +49,3 @@ Object.defineProperty(exports, "syncGenerator", {
|
|
|
45
49
|
enumerable: true,
|
|
46
50
|
get: function () { return chunkWUJKJGEW_js.generatorFn; }
|
|
47
51
|
});
|
|
48
|
-
Object.defineProperty(exports, "createNodesV2", {
|
|
49
|
-
enumerable: true,
|
|
50
|
-
get: function () { return chunkGFUZORW3_js.createNodesV2; }
|
|
51
|
-
});
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
export { createNodesV2 } from './chunk-Y4WK22DY.mjs';
|
|
1
2
|
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-
|
|
3
|
+
export { executor_default as lint } from './chunk-EWXGKWHK.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-WNLIJGN4.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-LH6XKDMA.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-LQRLEK65.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-WAXOGGDZ.mjs';
|
|
7
8
|
import './chunk-23KFTIT2.mjs';
|
|
8
9
|
export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
|
|
9
|
-
import './chunk-
|
|
10
|
-
|
|
11
|
-
import './chunk-
|
|
10
|
+
import './chunk-U2ZZ4QLS.mjs';
|
|
11
|
+
import './chunk-DMX7BNND.mjs';
|
|
12
|
+
import './chunk-WGIN2BGP.mjs';
|
|
12
13
|
import './chunk-LQU7XWFP.mjs';
|
|
13
|
-
import './chunk-FMYWKI25.mjs';
|
|
14
14
|
import './chunk-O6YSETKJ.mjs';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var chunkUAUZWBTW_js = require('../../chunk-UAUZWBTW.js');
|
|
4
|
+
require('../../chunk-2PYUYDPD.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 chunkUAUZWBTW_js.withExecutor; }
|
|
12
12
|
});
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { withExecutor } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { withExecutor } from '../../chunk-U2ZZ4QLS.mjs';
|
|
2
|
+
import '../../chunk-WGIN2BGP.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 chunk2W5L3QE3_js = require('../../../chunk-2W5L3QE3.js');
|
|
6
|
+
require('../../../chunk-UAUZWBTW.js');
|
|
7
|
+
require('../../../chunk-2PYUYDPD.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 chunk2W5L3QE3_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk2W5L3QE3_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-LH6XKDMA.mjs';
|
|
2
|
+
import '../../../chunk-U2ZZ4QLS.mjs';
|
|
3
|
+
import '../../../chunk-WGIN2BGP.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 chunkELZO2KAE_js = require('../../../chunk-ELZO2KAE.js');
|
|
6
|
+
require('../../../chunk-UAUZWBTW.js');
|
|
7
|
+
require('../../../chunk-2PYUYDPD.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 chunkELZO2KAE_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkELZO2KAE_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-LQRLEK65.mjs';
|
|
2
|
+
import '../../../chunk-U2ZZ4QLS.mjs';
|
|
3
|
+
import '../../../chunk-WGIN2BGP.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 chunkI7QVZOFS_js = require('../../../chunk-I7QVZOFS.js');
|
|
6
|
+
require('../../../chunk-UAUZWBTW.js');
|
|
7
|
+
require('../../../chunk-2PYUYDPD.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 chunkI7QVZOFS_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkI7QVZOFS_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-WAXOGGDZ.mjs';
|
|
2
|
+
import '../../../chunk-U2ZZ4QLS.mjs';
|
|
3
|
+
import '../../../chunk-WGIN2BGP.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 chunkYPABMWPC_js = require('../../../chunk-YPABMWPC.js');
|
|
6
|
+
require('../../../chunk-UAUZWBTW.js');
|
|
7
|
+
require('../../../chunk-2PYUYDPD.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 chunkYPABMWPC_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkYPABMWPC_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-EWXGKWHK.mjs';
|
|
2
|
+
import '../../../chunk-U2ZZ4QLS.mjs';
|
|
3
|
+
import '../../../chunk-WGIN2BGP.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 chunkV5EQMHJX_js = require('../../../chunk-V5EQMHJX.js');
|
|
6
|
+
require('../../../chunk-UAUZWBTW.js');
|
|
7
|
+
require('../../../chunk-2PYUYDPD.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 chunkV5EQMHJX_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkV5EQMHJX_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-WNLIJGN4.mjs';
|
|
2
|
+
import '../../../chunk-U2ZZ4QLS.mjs';
|
|
3
|
+
import '../../../chunk-WGIN2BGP.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkMAMHMV35_js = require('../../chunk-MAMHMV35.js');
|
|
4
|
+
require('../../chunk-2PYUYDPD.js');
|
|
4
5
|
require('../../chunk-VIU4CXA3.js');
|
|
5
|
-
require('../../chunk-LTCZN4I4.js');
|
|
6
6
|
require('../../chunk-SHUYVCID.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
Object.defineProperty(exports, "createNxPlugin", {
|
|
11
11
|
enumerable: true,
|
|
12
|
-
get: function () { return
|
|
12
|
+
get: function () { return chunkMAMHMV35_js.createNxPlugin; }
|
|
13
13
|
});
|
|
14
14
|
Object.defineProperty(exports, "getNxPluginInputs", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunkMAMHMV35_js.getNxPluginInputs; }
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "getNxTargetInputs", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
20
|
+
get: function () { return chunkMAMHMV35_js.getNxTargetInputs; }
|
|
21
21
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-
|
|
1
|
+
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-DMX7BNND.mjs';
|
|
2
|
+
import '../../chunk-WGIN2BGP.mjs';
|
|
2
3
|
import '../../chunk-LQU7XWFP.mjs';
|
|
3
|
-
import '../../chunk-FMYWKI25.mjs';
|
|
4
4
|
import '../../chunk-O6YSETKJ.mjs';
|
package/dist/src/plugin/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var chunk2YSHMNU6_js = require('../../chunk-2YSHMNU6.js');
|
|
4
|
+
require('../../chunk-MAMHMV35.js');
|
|
5
|
+
require('../../chunk-2PYUYDPD.js');
|
|
5
6
|
require('../../chunk-VIU4CXA3.js');
|
|
6
|
-
require('../../chunk-LTCZN4I4.js');
|
|
7
7
|
require('../../chunk-SHUYVCID.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
Object.defineProperty(exports, "createNodesV2", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunk2YSHMNU6_js.createNodesV2; }
|
|
14
14
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { createNodesV2 } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { createNodesV2 } from '../../chunk-Y4WK22DY.mjs';
|
|
2
|
+
import '../../chunk-DMX7BNND.mjs';
|
|
3
|
+
import '../../chunk-WGIN2BGP.mjs';
|
|
3
4
|
import '../../chunk-LQU7XWFP.mjs';
|
|
4
|
-
import '../../chunk-FMYWKI25.mjs';
|
|
5
5
|
import '../../chunk-O6YSETKJ.mjs';
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
interface NxPluginOptions {
|
|
2
|
+
/**
|
|
3
|
+
* Enable debug logging for the plugin
|
|
4
|
+
*
|
|
5
|
+
* @defaultValue false
|
|
6
|
+
*/
|
|
7
|
+
debug?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Configuration options for the clean target added by the Nx plugin
|
|
10
|
+
*/
|
|
2
11
|
clean?: false | {
|
|
3
12
|
/**
|
|
4
13
|
* The name of the clean target to use when cleaning the project
|
|
@@ -33,6 +42,9 @@ interface NxPluginOptions {
|
|
|
33
42
|
*/
|
|
34
43
|
executor?: string;
|
|
35
44
|
};
|
|
45
|
+
/**
|
|
46
|
+
* Configuration options for the prepare target added by the Nx plugin
|
|
47
|
+
*/
|
|
36
48
|
prepare?: false | {
|
|
37
49
|
/**
|
|
38
50
|
* The name of the prepare target to use when preparing the project
|
|
@@ -67,6 +79,9 @@ interface NxPluginOptions {
|
|
|
67
79
|
*/
|
|
68
80
|
executor?: string;
|
|
69
81
|
};
|
|
82
|
+
/**
|
|
83
|
+
* Configuration options for the lint target added by the Nx plugin
|
|
84
|
+
*/
|
|
70
85
|
lint?: false | {
|
|
71
86
|
/**
|
|
72
87
|
* The name of the lint target to use when linting the project
|
|
@@ -101,6 +116,9 @@ interface NxPluginOptions {
|
|
|
101
116
|
*/
|
|
102
117
|
executor?: string;
|
|
103
118
|
};
|
|
119
|
+
/**
|
|
120
|
+
* Configuration options for the build target added by the Nx plugin
|
|
121
|
+
*/
|
|
104
122
|
build?: false | {
|
|
105
123
|
/**
|
|
106
124
|
* The name of the build target to use when building the project
|
|
@@ -135,6 +153,9 @@ interface NxPluginOptions {
|
|
|
135
153
|
*/
|
|
136
154
|
executor?: string;
|
|
137
155
|
};
|
|
156
|
+
/**
|
|
157
|
+
* Configuration options for the docs target added by the Nx plugin
|
|
158
|
+
*/
|
|
138
159
|
docs?: false | {
|
|
139
160
|
/**
|
|
140
161
|
* The name of the docs target to use when generating documentation for the project
|
|
@@ -169,6 +190,9 @@ interface NxPluginOptions {
|
|
|
169
190
|
*/
|
|
170
191
|
executor?: string;
|
|
171
192
|
};
|
|
193
|
+
/**
|
|
194
|
+
* Configuration options for the deploy target added by the Nx plugin
|
|
195
|
+
*/
|
|
172
196
|
deploy?: false | {
|
|
173
197
|
/**
|
|
174
198
|
* The name of the deploy target to use when deploying the project
|