@powerlines/nx 0.11.11 → 0.11.13
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 +17 -0
- package/dist/{chunk-IU6BBLBQ.js → chunk-CFQGNYTU.js} +2 -2
- package/dist/{chunk-QZWEMZQ5.js → chunk-D3WZ46YG.js} +13 -9
- package/dist/{chunk-YYN5VLXM.mjs → chunk-FNCKQP75.mjs} +1 -1
- package/dist/{chunk-IVXNI2KV.mjs → chunk-GFFAIJLL.mjs} +1 -1
- package/dist/{chunk-ZPDOOUZK.mjs → chunk-KPZS6OF5.mjs} +1 -1
- package/dist/{chunk-4QGBKGVB.mjs → chunk-LK4PXBKI.mjs} +5 -5
- package/dist/{chunk-RRO4ZTQH.js → chunk-NS4EZPJS.js} +2 -2
- package/dist/{chunk-GA63EOCY.mjs → chunk-PI77JMF3.mjs} +1 -1
- package/dist/{chunk-XR24N2HA.js → chunk-QSMJD4CD.js} +5 -5
- package/dist/{chunk-W2UAWF6J.js → chunk-RHXOJV3U.js} +2 -2
- package/dist/{chunk-2KLRY6GO.js → chunk-TNFRQNSW.js} +2 -2
- package/dist/{chunk-SWR56C2F.js → chunk-TYY5DTTK.js} +2 -2
- package/dist/{chunk-H3YUWINS.mjs → chunk-WR7HUZEQ.mjs} +13 -9
- package/dist/{chunk-GURG63A4.js → chunk-XPKIUJNT.js} +2 -2
- package/dist/{chunk-NSUAFTVH.mjs → chunk-YXY754TO.mjs} +1 -1
- package/dist/{chunk-BH36YXJ3.mjs → chunk-ZX6L4UFE.mjs} +1 -1
- 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/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Powerlines - Nx
|
|
4
4
|
|
|
5
|
+
## [0.11.12](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.12) (12/19/2025)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **nx:** Resolve issue applying `entry` defaults incorrectly
|
|
10
|
+
([d0c8bca2](https://github.com/storm-software/powerlines/commit/d0c8bca2))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated **powerlines** to **v0.33.2**
|
|
15
|
+
|
|
16
|
+
## [0.11.11](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.11) (12/19/2025)
|
|
17
|
+
|
|
18
|
+
### Updated Dependencies
|
|
19
|
+
|
|
20
|
+
- Updated **powerlines** to **v0.33.1**
|
|
21
|
+
|
|
5
22
|
## [0.11.10](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.10) (12/19/2025)
|
|
6
23
|
|
|
7
24
|
### Updated Dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkD3WZ46YG_js = require('./chunk-D3WZ46YG.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 = chunkD3WZ46YG_js.withExecutor("build", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -2534,13 +2534,14 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2534
2534
|
#releaseId = uuid.uuid();
|
|
2535
2535
|
#timestamp = Date.now();
|
|
2536
2536
|
#envPaths;
|
|
2537
|
+
#entry = null;
|
|
2537
2538
|
#fs;
|
|
2538
2539
|
#tsconfig;
|
|
2539
2540
|
#program;
|
|
2540
2541
|
#parserCache;
|
|
2541
2542
|
#requestCache;
|
|
2542
2543
|
#getConfigProps(config = {}) {
|
|
2543
|
-
return {
|
|
2544
|
+
return defu6__default.default({
|
|
2544
2545
|
variant: config.build?.variant,
|
|
2545
2546
|
projectType: config.type,
|
|
2546
2547
|
projectRoot: config.root,
|
|
@@ -2564,7 +2565,13 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2564
2565
|
build: config.build,
|
|
2565
2566
|
framework: config.framework,
|
|
2566
2567
|
...config
|
|
2567
|
-
}
|
|
2568
|
+
}, {
|
|
2569
|
+
output: config.framework ? {
|
|
2570
|
+
artifactsPath: join.joinPaths(config.root ?? this.config.projectRoot, `.${config.framework ?? "powerlines"}`),
|
|
2571
|
+
dts: join.joinPaths(config.root ?? this.config.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
|
|
2572
|
+
builtinPrefix: config.framework ?? "powerlines"
|
|
2573
|
+
} : {}
|
|
2574
|
+
});
|
|
2568
2575
|
}
|
|
2569
2576
|
/**
|
|
2570
2577
|
* Create a new Storm context from the workspace root and user config.
|
|
@@ -2641,13 +2648,10 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2641
2648
|
* The resolved entry type definitions for the project
|
|
2642
2649
|
*/
|
|
2643
2650
|
get entry() {
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
};
|
|
2649
|
-
});
|
|
2650
|
-
return resolveEntriesSync(this, entry.length === 0 && this.config.entry ? toArray.toArray(this.config.entry) : entry);
|
|
2651
|
+
return resolveEntriesSync(this, !this.#entry || this.#entry.length === 0 ? toArray.toArray(this.config.entry) : this.#entry);
|
|
2652
|
+
}
|
|
2653
|
+
set entry(value) {
|
|
2654
|
+
this.#entry = value;
|
|
2651
2655
|
}
|
|
2652
2656
|
/**
|
|
2653
2657
|
* The TypeScript configuration parsed from the tsconfig file
|
|
@@ -144,7 +144,7 @@ function createNxPlugin(opts) {
|
|
|
144
144
|
].filter(Boolean),
|
|
145
145
|
defaultConfiguration: options?.prepare?.defaultConfiguration || "production",
|
|
146
146
|
options: {
|
|
147
|
-
entry: userConfig.entry
|
|
147
|
+
entry: userConfig.entry,
|
|
148
148
|
projectType: projectConfig.projectType || userConfig.type,
|
|
149
149
|
skipInstalls: userConfig.skipInstalls,
|
|
150
150
|
skipCache: userConfig.skipCache
|
|
@@ -178,7 +178,7 @@ function createNxPlugin(opts) {
|
|
|
178
178
|
].filter(Boolean),
|
|
179
179
|
defaultConfiguration: options?.build?.defaultConfiguration || "production",
|
|
180
180
|
options: {
|
|
181
|
-
entry: userConfig.entry
|
|
181
|
+
entry: userConfig.entry,
|
|
182
182
|
outputPath: userConfig.output?.outputPath || "dist/{projectRoot}",
|
|
183
183
|
projectType: projectConfig.projectType || userConfig.type,
|
|
184
184
|
skipInstalls: userConfig.skipInstalls,
|
|
@@ -219,7 +219,7 @@ function createNxPlugin(opts) {
|
|
|
219
219
|
].filter(Boolean),
|
|
220
220
|
defaultConfiguration: options?.lint?.defaultConfiguration || "production",
|
|
221
221
|
options: {
|
|
222
|
-
entry: userConfig.entry
|
|
222
|
+
entry: userConfig.entry,
|
|
223
223
|
projectType: projectConfig.projectType || userConfig.type,
|
|
224
224
|
skipInstalls: userConfig.skipInstalls,
|
|
225
225
|
skipCache: userConfig.skipCache
|
|
@@ -259,7 +259,7 @@ function createNxPlugin(opts) {
|
|
|
259
259
|
].filter(Boolean),
|
|
260
260
|
defaultConfiguration: options?.docs?.defaultConfiguration || "production",
|
|
261
261
|
options: {
|
|
262
|
-
entry: userConfig.entry
|
|
262
|
+
entry: userConfig.entry,
|
|
263
263
|
projectType: projectConfig.projectType || userConfig.type,
|
|
264
264
|
skipInstalls: userConfig.skipInstalls,
|
|
265
265
|
skipCache: userConfig.skipCache
|
|
@@ -299,7 +299,7 @@ function createNxPlugin(opts) {
|
|
|
299
299
|
].filter(Boolean),
|
|
300
300
|
defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
|
|
301
301
|
options: {
|
|
302
|
-
entry: userConfig.entry
|
|
302
|
+
entry: userConfig.entry,
|
|
303
303
|
projectType: projectConfig.projectType || userConfig.type,
|
|
304
304
|
skipInstalls: userConfig.skipInstalls,
|
|
305
305
|
skipCache: userConfig.skipCache
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkD3WZ46YG_js = require('./chunk-D3WZ46YG.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 = chunkD3WZ46YG_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -150,7 +150,7 @@ function createNxPlugin(opts) {
|
|
|
150
150
|
].filter(Boolean),
|
|
151
151
|
defaultConfiguration: options?.prepare?.defaultConfiguration || "production",
|
|
152
152
|
options: {
|
|
153
|
-
entry: userConfig.entry
|
|
153
|
+
entry: userConfig.entry,
|
|
154
154
|
projectType: projectConfig.projectType || userConfig.type,
|
|
155
155
|
skipInstalls: userConfig.skipInstalls,
|
|
156
156
|
skipCache: userConfig.skipCache
|
|
@@ -184,7 +184,7 @@ function createNxPlugin(opts) {
|
|
|
184
184
|
].filter(Boolean),
|
|
185
185
|
defaultConfiguration: options?.build?.defaultConfiguration || "production",
|
|
186
186
|
options: {
|
|
187
|
-
entry: userConfig.entry
|
|
187
|
+
entry: userConfig.entry,
|
|
188
188
|
outputPath: userConfig.output?.outputPath || "dist/{projectRoot}",
|
|
189
189
|
projectType: projectConfig.projectType || userConfig.type,
|
|
190
190
|
skipInstalls: userConfig.skipInstalls,
|
|
@@ -225,7 +225,7 @@ function createNxPlugin(opts) {
|
|
|
225
225
|
].filter(Boolean),
|
|
226
226
|
defaultConfiguration: options?.lint?.defaultConfiguration || "production",
|
|
227
227
|
options: {
|
|
228
|
-
entry: userConfig.entry
|
|
228
|
+
entry: userConfig.entry,
|
|
229
229
|
projectType: projectConfig.projectType || userConfig.type,
|
|
230
230
|
skipInstalls: userConfig.skipInstalls,
|
|
231
231
|
skipCache: userConfig.skipCache
|
|
@@ -265,7 +265,7 @@ function createNxPlugin(opts) {
|
|
|
265
265
|
].filter(Boolean),
|
|
266
266
|
defaultConfiguration: options?.docs?.defaultConfiguration || "production",
|
|
267
267
|
options: {
|
|
268
|
-
entry: userConfig.entry
|
|
268
|
+
entry: userConfig.entry,
|
|
269
269
|
projectType: projectConfig.projectType || userConfig.type,
|
|
270
270
|
skipInstalls: userConfig.skipInstalls,
|
|
271
271
|
skipCache: userConfig.skipCache
|
|
@@ -305,7 +305,7 @@ function createNxPlugin(opts) {
|
|
|
305
305
|
].filter(Boolean),
|
|
306
306
|
defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
|
|
307
307
|
options: {
|
|
308
|
-
entry: userConfig.entry
|
|
308
|
+
entry: userConfig.entry,
|
|
309
309
|
projectType: projectConfig.projectType || userConfig.type,
|
|
310
310
|
skipInstalls: userConfig.skipInstalls,
|
|
311
311
|
skipCache: userConfig.skipCache
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkD3WZ46YG_js = require('./chunk-D3WZ46YG.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 = chunkD3WZ46YG_js.withExecutor("prepare", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkQSMJD4CD_js = require('./chunk-QSMJD4CD.js');
|
|
4
4
|
|
|
5
5
|
// src/plugin/index.ts
|
|
6
|
-
var createNodesV2 =
|
|
6
|
+
var createNodesV2 = chunkQSMJD4CD_js.createNxPlugin({
|
|
7
7
|
framework: "powerlines"
|
|
8
8
|
});
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkD3WZ46YG_js = require('./chunk-D3WZ46YG.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 = chunkD3WZ46YG_js.withExecutor("clean", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -2505,13 +2505,14 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2505
2505
|
#releaseId = uuid();
|
|
2506
2506
|
#timestamp = Date.now();
|
|
2507
2507
|
#envPaths;
|
|
2508
|
+
#entry = null;
|
|
2508
2509
|
#fs;
|
|
2509
2510
|
#tsconfig;
|
|
2510
2511
|
#program;
|
|
2511
2512
|
#parserCache;
|
|
2512
2513
|
#requestCache;
|
|
2513
2514
|
#getConfigProps(config = {}) {
|
|
2514
|
-
return {
|
|
2515
|
+
return defu6({
|
|
2515
2516
|
variant: config.build?.variant,
|
|
2516
2517
|
projectType: config.type,
|
|
2517
2518
|
projectRoot: config.root,
|
|
@@ -2535,7 +2536,13 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2535
2536
|
build: config.build,
|
|
2536
2537
|
framework: config.framework,
|
|
2537
2538
|
...config
|
|
2538
|
-
}
|
|
2539
|
+
}, {
|
|
2540
|
+
output: config.framework ? {
|
|
2541
|
+
artifactsPath: joinPaths(config.root ?? this.config.projectRoot, `.${config.framework ?? "powerlines"}`),
|
|
2542
|
+
dts: joinPaths(config.root ?? this.config.projectRoot, `${config.framework ?? "powerlines"}.d.ts`),
|
|
2543
|
+
builtinPrefix: config.framework ?? "powerlines"
|
|
2544
|
+
} : {}
|
|
2545
|
+
});
|
|
2539
2546
|
}
|
|
2540
2547
|
/**
|
|
2541
2548
|
* Create a new Storm context from the workspace root and user config.
|
|
@@ -2612,13 +2619,10 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2612
2619
|
* The resolved entry type definitions for the project
|
|
2613
2620
|
*/
|
|
2614
2621
|
get entry() {
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
};
|
|
2620
|
-
});
|
|
2621
|
-
return resolveEntriesSync(this, entry.length === 0 && this.config.entry ? toArray(this.config.entry) : entry);
|
|
2622
|
+
return resolveEntriesSync(this, !this.#entry || this.#entry.length === 0 ? toArray(this.config.entry) : this.#entry);
|
|
2623
|
+
}
|
|
2624
|
+
set entry(value) {
|
|
2625
|
+
this.#entry = value;
|
|
2622
2626
|
}
|
|
2623
2627
|
/**
|
|
2624
2628
|
* The TypeScript configuration parsed from the tsconfig file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkD3WZ46YG_js = require('./chunk-D3WZ46YG.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 = chunkD3WZ46YG_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 chunkNS4EZPJS_js = require('./chunk-NS4EZPJS.js');
|
|
5
|
+
var chunkRHXOJV3U_js = require('./chunk-RHXOJV3U.js');
|
|
6
|
+
var chunkCFQGNYTU_js = require('./chunk-CFQGNYTU.js');
|
|
7
|
+
var chunkTYY5DTTK_js = require('./chunk-TYY5DTTK.js');
|
|
8
|
+
var chunkXPKIUJNT_js = require('./chunk-XPKIUJNT.js');
|
|
9
|
+
require('./chunk-D3WZ46YG.js');
|
|
10
10
|
require('./chunk-DQI2I5KK.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 chunkNS4EZPJS_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkRHXOJV3U_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkCFQGNYTU_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkTYY5DTTK_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkXPKIUJNT_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-FNCKQP75.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-ZX6L4UFE.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-GFFAIJLL.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-PI77JMF3.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-YXY754TO.mjs';
|
|
7
|
+
import './chunk-WR7HUZEQ.mjs';
|
|
8
8
|
import './chunk-OVX2CEXQ.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 chunkTNFRQNSW_js = require('./chunk-TNFRQNSW.js');
|
|
4
4
|
require('./chunk-XO62WWX4.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
5
|
+
var chunkNS4EZPJS_js = require('./chunk-NS4EZPJS.js');
|
|
6
|
+
var chunkRHXOJV3U_js = require('./chunk-RHXOJV3U.js');
|
|
7
|
+
var chunkCFQGNYTU_js = require('./chunk-CFQGNYTU.js');
|
|
8
|
+
var chunkTYY5DTTK_js = require('./chunk-TYY5DTTK.js');
|
|
9
|
+
var chunkXPKIUJNT_js = require('./chunk-XPKIUJNT.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-D3WZ46YG.js');
|
|
13
|
+
require('./chunk-QSMJD4CD.js');
|
|
14
14
|
require('./chunk-DQI2I5KK.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 chunkTNFRQNSW_js.createNodesV2; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "lint", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkNS4EZPJS_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkRHXOJV3U_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkCFQGNYTU_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkTYY5DTTK_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkXPKIUJNT_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-KPZS6OF5.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-FNCKQP75.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-ZX6L4UFE.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-GFFAIJLL.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-PI77JMF3.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-YXY754TO.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-WR7HUZEQ.mjs';
|
|
11
|
+
import './chunk-LK4PXBKI.mjs';
|
|
12
12
|
import './chunk-OVX2CEXQ.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 chunkD3WZ46YG_js = require('../../chunk-D3WZ46YG.js');
|
|
4
4
|
require('../../chunk-DQI2I5KK.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 chunkD3WZ46YG_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 chunkCFQGNYTU_js = require('../../../chunk-CFQGNYTU.js');
|
|
6
|
+
require('../../../chunk-D3WZ46YG.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkCFQGNYTU_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkCFQGNYTU_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-GFFAIJLL.mjs';
|
|
2
|
+
import '../../../chunk-WR7HUZEQ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.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 chunkTYY5DTTK_js = require('../../../chunk-TYY5DTTK.js');
|
|
6
|
+
require('../../../chunk-D3WZ46YG.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkTYY5DTTK_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkTYY5DTTK_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-PI77JMF3.mjs';
|
|
2
|
+
import '../../../chunk-WR7HUZEQ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.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 chunkXPKIUJNT_js = require('../../../chunk-XPKIUJNT.js');
|
|
6
|
+
require('../../../chunk-D3WZ46YG.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkXPKIUJNT_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkXPKIUJNT_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-YXY754TO.mjs';
|
|
2
|
+
import '../../../chunk-WR7HUZEQ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.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 chunkNS4EZPJS_js = require('../../../chunk-NS4EZPJS.js');
|
|
6
|
+
require('../../../chunk-D3WZ46YG.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkNS4EZPJS_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkNS4EZPJS_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-FNCKQP75.mjs';
|
|
2
|
+
import '../../../chunk-WR7HUZEQ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.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 chunkRHXOJV3U_js = require('../../../chunk-RHXOJV3U.js');
|
|
6
|
+
require('../../../chunk-D3WZ46YG.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkRHXOJV3U_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkRHXOJV3U_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-ZX6L4UFE.mjs';
|
|
2
|
+
import '../../../chunk-WR7HUZEQ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkQSMJD4CD_js = require('../../chunk-QSMJD4CD.js');
|
|
4
4
|
require('../../chunk-DQI2I5KK.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 chunkQSMJD4CD_js.createNxPlugin; }
|
|
13
13
|
});
|
|
14
14
|
Object.defineProperty(exports, "getNxPluginInputs", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunkQSMJD4CD_js.getNxPluginInputs; }
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "getNxTargetInputs", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
20
|
+
get: function () { return chunkQSMJD4CD_js.getNxTargetInputs; }
|
|
21
21
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-
|
|
1
|
+
export { createNxPlugin, getNxPluginInputs, getNxTargetInputs } from '../../chunk-LK4PXBKI.mjs';
|
|
2
2
|
import '../../chunk-OVX2CEXQ.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 chunkTNFRQNSW_js = require('../../chunk-TNFRQNSW.js');
|
|
4
|
+
require('../../chunk-QSMJD4CD.js');
|
|
5
5
|
require('../../chunk-DQI2I5KK.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 chunkTNFRQNSW_js.createNodesV2; }
|
|
14
14
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { createNodesV2 } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { createNodesV2 } from '../../chunk-KPZS6OF5.mjs';
|
|
2
|
+
import '../../chunk-LK4PXBKI.mjs';
|
|
3
3
|
import '../../chunk-OVX2CEXQ.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.11.
|
|
3
|
+
"version": "0.11.13",
|
|
4
4
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -181,25 +181,25 @@
|
|
|
181
181
|
},
|
|
182
182
|
"typings": "dist/index.d.ts",
|
|
183
183
|
"dependencies": {
|
|
184
|
-
"@nx/devkit": "^22.3.
|
|
184
|
+
"@nx/devkit": "^22.3.3",
|
|
185
185
|
"@storm-software/build-tools": "^0.158.73",
|
|
186
186
|
"@storm-software/config": "^1.134.73",
|
|
187
187
|
"@storm-software/config-tools": "^1.188.73",
|
|
188
188
|
"@storm-software/esbuild": "^0.53.73",
|
|
189
189
|
"@storm-software/unbuild": "^0.57.73",
|
|
190
190
|
"@storm-software/workspace-tools": "^1.294.19",
|
|
191
|
-
"@stryke/fs": "^0.33.
|
|
192
|
-
"@stryke/hash": "^0.12.
|
|
191
|
+
"@stryke/fs": "^0.33.26",
|
|
192
|
+
"@stryke/hash": "^0.12.32",
|
|
193
193
|
"@stryke/path": "^0.23.2",
|
|
194
|
-
"@stryke/string-format": "^0.12.
|
|
195
|
-
"@stryke/type-checks": "^0.5.
|
|
194
|
+
"@stryke/string-format": "^0.12.29",
|
|
195
|
+
"@stryke/type-checks": "^0.5.14",
|
|
196
196
|
"defu": "^6.1.4",
|
|
197
197
|
"jiti": "^2.6.1",
|
|
198
|
-
"nx": "
|
|
199
|
-
"powerlines": "^0.
|
|
198
|
+
"nx": "22.3.3",
|
|
199
|
+
"powerlines": "^0.34.0"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
|
-
"@nx/workspace": "
|
|
202
|
+
"@nx/workspace": "22.3.3",
|
|
203
203
|
"@storm-software/testing-tools": "^1.119.72",
|
|
204
204
|
"@types/node": "^24.10.4",
|
|
205
205
|
"eslint-flat-config-utils": "^2.1.4",
|
|
@@ -210,5 +210,5 @@
|
|
|
210
210
|
"publishConfig": { "access": "public" },
|
|
211
211
|
"executors": "./executors.json",
|
|
212
212
|
"generators": "./generators.json",
|
|
213
|
-
"gitHead": "
|
|
213
|
+
"gitHead": "ec843acfdf7935e78ac7a78ffb0ae110e6490da3"
|
|
214
214
|
}
|