@powerlines/nx 0.10.20 → 0.10.22
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 +23 -0
- package/dist/{chunk-EX3O7O2B.js → chunk-62CNXBCW.js} +2 -2
- package/dist/{chunk-D7WLM2B6.js → chunk-7JI7SNPI.js} +2 -2
- package/dist/{chunk-TO3WM5BR.js → chunk-7N6FX55G.js} +47 -6
- package/dist/{chunk-GHJHSY4S.mjs → chunk-C7YXZ6X3.mjs} +1 -1
- package/dist/{chunk-FVXW6LDE.js → chunk-IPVB7OAF.js} +2981 -2711
- package/dist/{chunk-DL2U52BR.mjs → chunk-IZ2DVA7V.mjs} +1 -1
- package/dist/{chunk-SDMJCGHR.mjs → chunk-JFEKW6WO.mjs} +1 -1
- package/dist/{chunk-PWKMRXQL.js → chunk-JZFLLKX7.js} +2 -2
- package/dist/{chunk-H4DMVLQJ.mjs → chunk-NQA6VVBG.mjs} +1 -1
- package/dist/{chunk-4F2AZ6CR.mjs → chunk-OY7HISJN.mjs} +2973 -2703
- package/dist/{chunk-FEJ2ZSZP.mjs → chunk-R6VKTKIJ.mjs} +1 -1
- package/dist/{chunk-WN4V3Q7V.js → chunk-SBOWIOOS.js} +2 -2
- package/dist/{chunk-UKZ7TQQQ.js → chunk-SJ6WM4OK.js} +2 -2
- package/dist/{chunk-RDLEKRFJ.mjs → chunk-XL4OPEOX.mjs} +1 -1
- package/dist/{chunk-OS7UD4XD.mjs → chunk-XRMEXEW2.mjs} +47 -6
- package/dist/{chunk-X7QXBIDS.js → chunk-Z6JAOALZ.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 +34 -0
- package/dist/src/types/plugin.d.ts +34 -0
- package/package.json +13 -13
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkIPVB7OAF_js = require('./chunk-IPVB7OAF.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 = chunkIPVB7OAF_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkIPVB7OAF_js = require('./chunk-IPVB7OAF.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 = chunkIPVB7OAF_js.withExecutor("prepare", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -162,8 +162,8 @@ function createNxPlugin(opts) {
|
|
|
162
162
|
executor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || "build"}`,
|
|
163
163
|
dependsOn: [
|
|
164
164
|
`^${options?.build?.targetName || "build"}`,
|
|
165
|
-
"prepare"
|
|
166
|
-
],
|
|
165
|
+
options?.prepare !== false && `^${options?.prepare?.targetName || "prepare"}`
|
|
166
|
+
].filter(Boolean),
|
|
167
167
|
defaultConfiguration: options?.build?.defaultConfiguration || "production",
|
|
168
168
|
options: {
|
|
169
169
|
entry: userConfig.entry || "{sourceRoot}/index.ts",
|
|
@@ -204,8 +204,8 @@ function createNxPlugin(opts) {
|
|
|
204
204
|
executor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || "lint"}`,
|
|
205
205
|
dependsOn: [
|
|
206
206
|
`^${options?.lint?.targetName || "lint"}`,
|
|
207
|
-
"prepare"
|
|
208
|
-
],
|
|
207
|
+
options?.prepare !== false && `^${options?.prepare?.targetName || "prepare"}`
|
|
208
|
+
].filter(Boolean),
|
|
209
209
|
defaultConfiguration: options?.lint?.defaultConfiguration || "production",
|
|
210
210
|
options: {
|
|
211
211
|
entry: userConfig.entry || "{sourceRoot}/index.ts",
|
|
@@ -245,8 +245,8 @@ function createNxPlugin(opts) {
|
|
|
245
245
|
executor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || "docs"}`,
|
|
246
246
|
dependsOn: [
|
|
247
247
|
`^${options?.docs?.targetName || "docs"}`,
|
|
248
|
-
"build"
|
|
249
|
-
],
|
|
248
|
+
options?.build !== false && `^${options?.build?.targetName || "build"}`
|
|
249
|
+
].filter(Boolean),
|
|
250
250
|
defaultConfiguration: options?.docs?.defaultConfiguration || "production",
|
|
251
251
|
options: {
|
|
252
252
|
entry: userConfig.entry || "{sourceRoot}/index.ts",
|
|
@@ -269,6 +269,47 @@ function createNxPlugin(opts) {
|
|
|
269
269
|
}
|
|
270
270
|
};
|
|
271
271
|
}
|
|
272
|
+
if (options?.deploy !== false && !targets[options?.deploy?.targetName || "deploy"]) {
|
|
273
|
+
targets[options?.deploy?.targetName || "deploy"] = {
|
|
274
|
+
inputs: Array.isArray(options?.deploy?.inputs) ? options.deploy.inputs : withNamedInputs([
|
|
275
|
+
...targetInputs,
|
|
276
|
+
artifactsFolder
|
|
277
|
+
], options?.deploy?.inputs ? [
|
|
278
|
+
options.deploy.inputs
|
|
279
|
+
] : [
|
|
280
|
+
"documentation",
|
|
281
|
+
"typescript"
|
|
282
|
+
]),
|
|
283
|
+
outputs: options?.deploy?.outputs ?? [
|
|
284
|
+
"{options.outputPath}"
|
|
285
|
+
],
|
|
286
|
+
executor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || "deploy"}`,
|
|
287
|
+
dependsOn: [
|
|
288
|
+
`^${options?.deploy?.targetName || "deploy"}`,
|
|
289
|
+
options?.build !== false && `^${options?.build?.targetName || "build"}`
|
|
290
|
+
].filter(Boolean),
|
|
291
|
+
defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
|
|
292
|
+
options: {
|
|
293
|
+
entry: userConfig.entry || "{sourceRoot}/index.ts",
|
|
294
|
+
projectType: projectConfig.projectType || userConfig.type,
|
|
295
|
+
tsconfig,
|
|
296
|
+
skipInstalls: userConfig.skipInstalls,
|
|
297
|
+
skipCache: userConfig.skipCache
|
|
298
|
+
},
|
|
299
|
+
configurations: {
|
|
300
|
+
production: {
|
|
301
|
+
mode: "production"
|
|
302
|
+
},
|
|
303
|
+
test: {
|
|
304
|
+
mode: "test"
|
|
305
|
+
},
|
|
306
|
+
development: {
|
|
307
|
+
mode: "development",
|
|
308
|
+
skipCache: true
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
}
|
|
272
313
|
setDefaultProjectTags(projectConfig, name);
|
|
273
314
|
addProjectTag(projectConfig, framework, projectConfig.projectType || userConfig.type || "library", {
|
|
274
315
|
overwrite: true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkIPVB7OAF_js = require('./chunk-IPVB7OAF.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 = chunkIPVB7OAF_js.withExecutor("docs", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
package/dist/executors.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
require('./chunk-XO62WWX4.js');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
require('./chunk-
|
|
4
|
+
var chunkSBOWIOOS_js = require('./chunk-SBOWIOOS.js');
|
|
5
|
+
var chunkSJ6WM4OK_js = require('./chunk-SJ6WM4OK.js');
|
|
6
|
+
var chunk7JI7SNPI_js = require('./chunk-7JI7SNPI.js');
|
|
7
|
+
var chunkJZFLLKX7_js = require('./chunk-JZFLLKX7.js');
|
|
8
|
+
var chunkZ6JAOALZ_js = require('./chunk-Z6JAOALZ.js');
|
|
9
|
+
require('./chunk-IPVB7OAF.js');
|
|
10
10
|
require('./chunk-LTCZN4I4.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 chunkSBOWIOOS_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkSJ6WM4OK_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunk7JI7SNPI_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkJZFLLKX7_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkZ6JAOALZ_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-NQA6VVBG.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-JFEKW6WO.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-C7YXZ6X3.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-XL4OPEOX.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-IZ2DVA7V.mjs';
|
|
7
|
+
import './chunk-OY7HISJN.mjs';
|
|
8
8
|
import './chunk-FMYWKI25.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 chunk62CNXBCW_js = require('./chunk-62CNXBCW.js');
|
|
4
4
|
require('./chunk-XO62WWX4.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
5
|
+
var chunkSBOWIOOS_js = require('./chunk-SBOWIOOS.js');
|
|
6
|
+
var chunkSJ6WM4OK_js = require('./chunk-SJ6WM4OK.js');
|
|
7
|
+
var chunk7JI7SNPI_js = require('./chunk-7JI7SNPI.js');
|
|
8
|
+
var chunkJZFLLKX7_js = require('./chunk-JZFLLKX7.js');
|
|
9
|
+
var chunkZ6JAOALZ_js = require('./chunk-Z6JAOALZ.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-IPVB7OAF.js');
|
|
13
|
+
require('./chunk-7N6FX55G.js');
|
|
14
14
|
require('./chunk-LTCZN4I4.js');
|
|
15
15
|
require('./chunk-VIU4CXA3.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 chunk62CNXBCW_js.createNodesV2; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "lint", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkSBOWIOOS_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkSJ6WM4OK_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunk7JI7SNPI_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkJZFLLKX7_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkZ6JAOALZ_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-R6VKTKIJ.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-NQA6VVBG.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-JFEKW6WO.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-C7YXZ6X3.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-XL4OPEOX.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-IZ2DVA7V.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-OY7HISJN.mjs';
|
|
11
|
+
import './chunk-XRMEXEW2.mjs';
|
|
12
12
|
import './chunk-FMYWKI25.mjs';
|
|
13
13
|
import './chunk-LQU7XWFP.mjs';
|
|
14
14
|
import './chunk-O6YSETKJ.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkIPVB7OAF_js = require('../../chunk-IPVB7OAF.js');
|
|
4
4
|
require('../../chunk-LTCZN4I4.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 chunkIPVB7OAF_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 chunk7JI7SNPI_js = require('../../../chunk-7JI7SNPI.js');
|
|
6
|
+
require('../../../chunk-IPVB7OAF.js');
|
|
7
7
|
require('../../../chunk-LTCZN4I4.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 chunk7JI7SNPI_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk7JI7SNPI_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-C7YXZ6X3.mjs';
|
|
2
|
+
import '../../../chunk-OY7HISJN.mjs';
|
|
3
3
|
import '../../../chunk-FMYWKI25.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 chunkJZFLLKX7_js = require('../../../chunk-JZFLLKX7.js');
|
|
6
|
+
require('../../../chunk-IPVB7OAF.js');
|
|
7
7
|
require('../../../chunk-LTCZN4I4.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 chunkJZFLLKX7_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkJZFLLKX7_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-XL4OPEOX.mjs';
|
|
2
|
+
import '../../../chunk-OY7HISJN.mjs';
|
|
3
3
|
import '../../../chunk-FMYWKI25.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 chunkZ6JAOALZ_js = require('../../../chunk-Z6JAOALZ.js');
|
|
6
|
+
require('../../../chunk-IPVB7OAF.js');
|
|
7
7
|
require('../../../chunk-LTCZN4I4.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 chunkZ6JAOALZ_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkZ6JAOALZ_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-IZ2DVA7V.mjs';
|
|
2
|
+
import '../../../chunk-OY7HISJN.mjs';
|
|
3
3
|
import '../../../chunk-FMYWKI25.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 chunkSBOWIOOS_js = require('../../../chunk-SBOWIOOS.js');
|
|
6
|
+
require('../../../chunk-IPVB7OAF.js');
|
|
7
7
|
require('../../../chunk-LTCZN4I4.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 chunkSBOWIOOS_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkSBOWIOOS_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-NQA6VVBG.mjs';
|
|
2
|
+
import '../../../chunk-OY7HISJN.mjs';
|
|
3
3
|
import '../../../chunk-FMYWKI25.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 chunkSJ6WM4OK_js = require('../../../chunk-SJ6WM4OK.js');
|
|
6
|
+
require('../../../chunk-IPVB7OAF.js');
|
|
7
7
|
require('../../../chunk-LTCZN4I4.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 chunkSJ6WM4OK_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkSJ6WM4OK_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-JFEKW6WO.mjs';
|
|
2
|
+
import '../../../chunk-OY7HISJN.mjs';
|
|
3
3
|
import '../../../chunk-FMYWKI25.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk7N6FX55G_js = require('../../chunk-7N6FX55G.js');
|
|
4
4
|
require('../../chunk-LTCZN4I4.js');
|
|
5
5
|
require('../../chunk-VIU4CXA3.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 chunk7N6FX55G_js.createNxPlugin; }
|
|
13
13
|
});
|
|
14
14
|
Object.defineProperty(exports, "getNxPluginInputs", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunk7N6FX55G_js.getNxPluginInputs; }
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "getNxTargetInputs", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
20
|
+
get: function () { return chunk7N6FX55G_js.getNxTargetInputs; }
|
|
21
21
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-
|
|
1
|
+
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-XRMEXEW2.mjs';
|
|
2
2
|
import '../../chunk-FMYWKI25.mjs';
|
|
3
3
|
import '../../chunk-LQU7XWFP.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 chunk62CNXBCW_js = require('../../chunk-62CNXBCW.js');
|
|
4
|
+
require('../../chunk-7N6FX55G.js');
|
|
5
5
|
require('../../chunk-LTCZN4I4.js');
|
|
6
6
|
require('../../chunk-VIU4CXA3.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 chunk62CNXBCW_js.createNodesV2; }
|
|
14
14
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { createNodesV2 } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { createNodesV2 } from '../../chunk-R6VKTKIJ.mjs';
|
|
2
|
+
import '../../chunk-XRMEXEW2.mjs';
|
|
3
3
|
import '../../chunk-FMYWKI25.mjs';
|
|
4
4
|
import '../../chunk-LQU7XWFP.mjs';
|
|
5
5
|
import '../../chunk-O6YSETKJ.mjs';
|
|
@@ -169,6 +169,40 @@ interface NxPluginOptions {
|
|
|
169
169
|
*/
|
|
170
170
|
executor?: string;
|
|
171
171
|
};
|
|
172
|
+
deploy?: false | {
|
|
173
|
+
/**
|
|
174
|
+
* The name of the deploy target to use when deploying the project
|
|
175
|
+
*
|
|
176
|
+
* @defaultValue "deploy"
|
|
177
|
+
*/
|
|
178
|
+
targetName?: string;
|
|
179
|
+
/**
|
|
180
|
+
* The name of the deploy configuration to use when deploying the project
|
|
181
|
+
*
|
|
182
|
+
* @defaultValue "production"
|
|
183
|
+
*/
|
|
184
|
+
defaultConfiguration?: "production" | "test" | "development";
|
|
185
|
+
/**
|
|
186
|
+
* An array specifying any other target identifiers the deploy target depends on
|
|
187
|
+
*
|
|
188
|
+
* @defaultValue ["^deploy", "build"]
|
|
189
|
+
*/
|
|
190
|
+
dependsOn?: string[];
|
|
191
|
+
/**
|
|
192
|
+
* An array specifying any input files or globs to consider when determining if the deploy target needs to be re-run
|
|
193
|
+
*/
|
|
194
|
+
inputs?: string[] | "production" | "allProjectFiles" | "sharedGlobals" | "rust" | "typescript";
|
|
195
|
+
/**
|
|
196
|
+
* An array specifying the output files or globs generated by the deploy target
|
|
197
|
+
*/
|
|
198
|
+
outputs?: string[];
|
|
199
|
+
/**
|
|
200
|
+
* The executor to use for the deploy target
|
|
201
|
+
*
|
|
202
|
+
* @defaultValue "\@powerlines/nx:deploy"
|
|
203
|
+
*/
|
|
204
|
+
executor?: string;
|
|
205
|
+
};
|
|
172
206
|
}
|
|
173
207
|
|
|
174
208
|
export type { NxPluginOptions };
|
|
@@ -169,6 +169,40 @@ interface NxPluginOptions {
|
|
|
169
169
|
*/
|
|
170
170
|
executor?: string;
|
|
171
171
|
};
|
|
172
|
+
deploy?: false | {
|
|
173
|
+
/**
|
|
174
|
+
* The name of the deploy target to use when deploying the project
|
|
175
|
+
*
|
|
176
|
+
* @defaultValue "deploy"
|
|
177
|
+
*/
|
|
178
|
+
targetName?: string;
|
|
179
|
+
/**
|
|
180
|
+
* The name of the deploy configuration to use when deploying the project
|
|
181
|
+
*
|
|
182
|
+
* @defaultValue "production"
|
|
183
|
+
*/
|
|
184
|
+
defaultConfiguration?: "production" | "test" | "development";
|
|
185
|
+
/**
|
|
186
|
+
* An array specifying any other target identifiers the deploy target depends on
|
|
187
|
+
*
|
|
188
|
+
* @defaultValue ["^deploy", "build"]
|
|
189
|
+
*/
|
|
190
|
+
dependsOn?: string[];
|
|
191
|
+
/**
|
|
192
|
+
* An array specifying any input files or globs to consider when determining if the deploy target needs to be re-run
|
|
193
|
+
*/
|
|
194
|
+
inputs?: string[] | "production" | "allProjectFiles" | "sharedGlobals" | "rust" | "typescript";
|
|
195
|
+
/**
|
|
196
|
+
* An array specifying the output files or globs generated by the deploy target
|
|
197
|
+
*/
|
|
198
|
+
outputs?: string[];
|
|
199
|
+
/**
|
|
200
|
+
* The executor to use for the deploy target
|
|
201
|
+
*
|
|
202
|
+
* @defaultValue "\@powerlines/nx:deploy"
|
|
203
|
+
*/
|
|
204
|
+
executor?: string;
|
|
205
|
+
};
|
|
172
206
|
}
|
|
173
207
|
|
|
174
208
|
export type { NxPluginOptions };
|