@powerlines/nx 0.10.45 → 0.10.46
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 +6 -0
- package/dist/{chunk-ZL37TY72.js → chunk-3BM4F7DF.js} +2 -2
- package/dist/{chunk-4GOHIU5C.js → chunk-6MIGHWXS.js} +2 -2
- package/dist/{chunk-Z4DURF7V.js → chunk-B73RQF3Y.js} +45 -16
- package/dist/{chunk-RV4A57IL.js → chunk-BA3VSEVV.js} +2 -2
- package/dist/{chunk-HMVFFEMQ.mjs → chunk-BTBIUGND.mjs} +1 -1
- package/dist/{chunk-2JXCBCM2.js → chunk-EUCVGGMW.js} +2 -2
- package/dist/{chunk-DTWYF2BM.js → chunk-FKZWCQXX.js} +2 -2
- package/dist/{chunk-OXP4T7OM.mjs → chunk-N4LRSAGW.mjs} +1 -1
- package/dist/{chunk-7KYZYROW.mjs → chunk-PE72KJBW.mjs} +1 -1
- package/dist/{chunk-SFMHLFAI.mjs → chunk-QFQYFQT4.mjs} +1 -1
- package/dist/{chunk-TCMZZXZF.mjs → chunk-R6ECHVU4.mjs} +45 -16
- package/dist/{chunk-6G6UOPGV.mjs → chunk-WDCMFWCL.mjs} +1 -1
- package/dist/executors.js +14 -14
- package/dist/executors.mjs +6 -6
- package/dist/index.js +14 -14
- package/dist/index.mjs +6 -6
- 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/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Powerlines - Nx
|
|
4
4
|
|
|
5
|
+
## [0.10.46](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.46) (11/28/2025)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **powerlines** to **v0.27.0**
|
|
10
|
+
|
|
5
11
|
## [0.10.45](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.45) (11/28/2025)
|
|
6
12
|
|
|
7
13
|
### Updated Dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkB73RQF3Y_js.withExecutor("prepare", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkB73RQF3Y_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -2143,9 +2143,14 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2143
2143
|
if (isType.isAbsolutePath(id)) {
|
|
2144
2144
|
return id;
|
|
2145
2145
|
}
|
|
2146
|
+
const resolverCacheKey = murmurhash.murmurhash({
|
|
2147
|
+
id: this.#normalizeId(id),
|
|
2148
|
+
importer,
|
|
2149
|
+
options
|
|
2150
|
+
});
|
|
2146
2151
|
let result;
|
|
2147
2152
|
if (!this.#context.config.skipCache) {
|
|
2148
|
-
result = this.resolverCache.get(
|
|
2153
|
+
result = this.resolverCache.get(resolverCacheKey);
|
|
2149
2154
|
if (result) {
|
|
2150
2155
|
return result;
|
|
2151
2156
|
}
|
|
@@ -2171,6 +2176,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2171
2176
|
}
|
|
2172
2177
|
try {
|
|
2173
2178
|
result = await resolve.resolve(id, {
|
|
2179
|
+
...options,
|
|
2174
2180
|
paths
|
|
2175
2181
|
});
|
|
2176
2182
|
} catch {
|
|
@@ -2179,7 +2185,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2179
2185
|
if (result) {
|
|
2180
2186
|
result = correctPath.toAbsolutePath(append.appendPath(result, this.#context.config.projectRoot), this.#context.workspaceConfig.workspaceRoot);
|
|
2181
2187
|
if (!this.#context.config.skipCache) {
|
|
2182
|
-
this.resolverCache.set(
|
|
2188
|
+
this.resolverCache.set(resolverCacheKey, result);
|
|
2183
2189
|
}
|
|
2184
2190
|
}
|
|
2185
2191
|
return result;
|
|
@@ -2600,9 +2606,26 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2600
2606
|
* @param options - Additional resolution options.
|
|
2601
2607
|
* @returns A promise that resolves to the resolved module path.
|
|
2602
2608
|
*/
|
|
2603
|
-
async
|
|
2604
|
-
|
|
2605
|
-
|
|
2609
|
+
async resolve(id, importer, options = {}) {
|
|
2610
|
+
let moduleId = id;
|
|
2611
|
+
if (this.config.build.alias) {
|
|
2612
|
+
if (Array.isArray(this.config.build.alias)) {
|
|
2613
|
+
const alias = this.config.build.alias.find((a) => bundleRequire.match(moduleId, [
|
|
2614
|
+
a.find
|
|
2615
|
+
]));
|
|
2616
|
+
if (alias) {
|
|
2617
|
+
moduleId = alias.replacement;
|
|
2618
|
+
}
|
|
2619
|
+
} else if (isSetObject.isSetObject(this.config.build.alias) && this.config.build.alias[id]) {
|
|
2620
|
+
moduleId = this.config.build.alias[id];
|
|
2621
|
+
}
|
|
2622
|
+
}
|
|
2623
|
+
if (this.fs.isVirtual(moduleId)) {
|
|
2624
|
+
const result = await this.fs.resolve(moduleId, importer, {
|
|
2625
|
+
conditions: this.config.build.conditions,
|
|
2626
|
+
extensions: this.config.build.extensions,
|
|
2627
|
+
...options
|
|
2628
|
+
});
|
|
2606
2629
|
if (!result) {
|
|
2607
2630
|
return void 0;
|
|
2608
2631
|
}
|
|
@@ -2612,28 +2635,28 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2612
2635
|
};
|
|
2613
2636
|
}
|
|
2614
2637
|
if (this.config.build.skipNodeModulesBundle) {
|
|
2615
|
-
if (bundleRequire.match(
|
|
2638
|
+
if (bundleRequire.match(moduleId, this.#resolvePatterns) || bundleRequire.match(moduleId, this.config.build.noExternal)) {
|
|
2616
2639
|
return void 0;
|
|
2617
2640
|
}
|
|
2618
|
-
if (bundleRequire.match(
|
|
2641
|
+
if (bundleRequire.match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
|
|
2619
2642
|
return {
|
|
2620
|
-
id,
|
|
2643
|
+
id: moduleId,
|
|
2621
2644
|
external: true
|
|
2622
2645
|
};
|
|
2623
2646
|
}
|
|
2624
|
-
if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(
|
|
2647
|
+
if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(moduleId)) {
|
|
2625
2648
|
return {
|
|
2626
|
-
id,
|
|
2649
|
+
id: moduleId,
|
|
2627
2650
|
external: true
|
|
2628
2651
|
};
|
|
2629
2652
|
}
|
|
2630
2653
|
} else {
|
|
2631
|
-
if (bundleRequire.match(
|
|
2654
|
+
if (bundleRequire.match(moduleId, this.config.build.noExternal)) {
|
|
2632
2655
|
return void 0;
|
|
2633
2656
|
}
|
|
2634
|
-
if (bundleRequire.match(
|
|
2657
|
+
if (bundleRequire.match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
|
|
2635
2658
|
return {
|
|
2636
|
-
id,
|
|
2659
|
+
id: moduleId,
|
|
2637
2660
|
external: true
|
|
2638
2661
|
};
|
|
2639
2662
|
}
|
|
@@ -3059,9 +3082,11 @@ function createPluginContext(plugin, environment) {
|
|
|
3059
3082
|
}, "normalizeMessage");
|
|
3060
3083
|
const log = environment.extendLog(plugin.name);
|
|
3061
3084
|
const callHookFn = /* @__PURE__ */ chunkSHUYVCID_js.__name(async (hook, options, ...args) => {
|
|
3062
|
-
return callHook(
|
|
3085
|
+
return environment.$$internal.api.callHook(hook, {
|
|
3063
3086
|
sequential: true,
|
|
3064
|
-
|
|
3087
|
+
result: "merge",
|
|
3088
|
+
...options,
|
|
3089
|
+
environment
|
|
3065
3090
|
}, ...args);
|
|
3066
3091
|
}, "callHookFn");
|
|
3067
3092
|
return new Proxy({}, {
|
|
@@ -3444,7 +3469,11 @@ var PowerlinesAPI = class _PowerlinesAPI {
|
|
|
3444
3469
|
this.#context = context;
|
|
3445
3470
|
}
|
|
3446
3471
|
/**
|
|
3447
|
-
* Initialize
|
|
3472
|
+
* Initialize a Powerlines API instance
|
|
3473
|
+
*
|
|
3474
|
+
* @param workspaceRoot - The directory of the underlying workspace the Powerlines project exists in
|
|
3475
|
+
* @param config - An object containing the configuration required to run Powerlines tasks.
|
|
3476
|
+
* @returns A new instance of the Powerlines API
|
|
3448
3477
|
*/
|
|
3449
3478
|
static async from(workspaceRoot, config) {
|
|
3450
3479
|
const api = new _PowerlinesAPI(await PowerlinesAPIContext.from(workspaceRoot, config));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkB73RQF3Y_js.withExecutor("clean", 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 chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkB73RQF3Y_js.withExecutor("build", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkB73RQF3Y_js = require('./chunk-B73RQF3Y.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 = chunkB73RQF3Y_js.withExecutor("docs", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -2114,9 +2114,14 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2114
2114
|
if (isAbsolutePath(id)) {
|
|
2115
2115
|
return id;
|
|
2116
2116
|
}
|
|
2117
|
+
const resolverCacheKey = murmurhash({
|
|
2118
|
+
id: this.#normalizeId(id),
|
|
2119
|
+
importer,
|
|
2120
|
+
options
|
|
2121
|
+
});
|
|
2117
2122
|
let result;
|
|
2118
2123
|
if (!this.#context.config.skipCache) {
|
|
2119
|
-
result = this.resolverCache.get(
|
|
2124
|
+
result = this.resolverCache.get(resolverCacheKey);
|
|
2120
2125
|
if (result) {
|
|
2121
2126
|
return result;
|
|
2122
2127
|
}
|
|
@@ -2142,6 +2147,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2142
2147
|
}
|
|
2143
2148
|
try {
|
|
2144
2149
|
result = await resolve$1(id, {
|
|
2150
|
+
...options,
|
|
2145
2151
|
paths
|
|
2146
2152
|
});
|
|
2147
2153
|
} catch {
|
|
@@ -2150,7 +2156,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2150
2156
|
if (result) {
|
|
2151
2157
|
result = toAbsolutePath(appendPath(result, this.#context.config.projectRoot), this.#context.workspaceConfig.workspaceRoot);
|
|
2152
2158
|
if (!this.#context.config.skipCache) {
|
|
2153
|
-
this.resolverCache.set(
|
|
2159
|
+
this.resolverCache.set(resolverCacheKey, result);
|
|
2154
2160
|
}
|
|
2155
2161
|
}
|
|
2156
2162
|
return result;
|
|
@@ -2571,9 +2577,26 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2571
2577
|
* @param options - Additional resolution options.
|
|
2572
2578
|
* @returns A promise that resolves to the resolved module path.
|
|
2573
2579
|
*/
|
|
2574
|
-
async
|
|
2575
|
-
|
|
2576
|
-
|
|
2580
|
+
async resolve(id, importer, options = {}) {
|
|
2581
|
+
let moduleId = id;
|
|
2582
|
+
if (this.config.build.alias) {
|
|
2583
|
+
if (Array.isArray(this.config.build.alias)) {
|
|
2584
|
+
const alias = this.config.build.alias.find((a) => match(moduleId, [
|
|
2585
|
+
a.find
|
|
2586
|
+
]));
|
|
2587
|
+
if (alias) {
|
|
2588
|
+
moduleId = alias.replacement;
|
|
2589
|
+
}
|
|
2590
|
+
} else if (isSetObject(this.config.build.alias) && this.config.build.alias[id]) {
|
|
2591
|
+
moduleId = this.config.build.alias[id];
|
|
2592
|
+
}
|
|
2593
|
+
}
|
|
2594
|
+
if (this.fs.isVirtual(moduleId)) {
|
|
2595
|
+
const result = await this.fs.resolve(moduleId, importer, {
|
|
2596
|
+
conditions: this.config.build.conditions,
|
|
2597
|
+
extensions: this.config.build.extensions,
|
|
2598
|
+
...options
|
|
2599
|
+
});
|
|
2577
2600
|
if (!result) {
|
|
2578
2601
|
return void 0;
|
|
2579
2602
|
}
|
|
@@ -2583,28 +2606,28 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
2583
2606
|
};
|
|
2584
2607
|
}
|
|
2585
2608
|
if (this.config.build.skipNodeModulesBundle) {
|
|
2586
|
-
if (match(
|
|
2609
|
+
if (match(moduleId, this.#resolvePatterns) || match(moduleId, this.config.build.noExternal)) {
|
|
2587
2610
|
return void 0;
|
|
2588
2611
|
}
|
|
2589
|
-
if (match(
|
|
2612
|
+
if (match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
|
|
2590
2613
|
return {
|
|
2591
|
-
id,
|
|
2614
|
+
id: moduleId,
|
|
2592
2615
|
external: true
|
|
2593
2616
|
};
|
|
2594
2617
|
}
|
|
2595
|
-
if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(
|
|
2618
|
+
if (!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(moduleId)) {
|
|
2596
2619
|
return {
|
|
2597
|
-
id,
|
|
2620
|
+
id: moduleId,
|
|
2598
2621
|
external: true
|
|
2599
2622
|
};
|
|
2600
2623
|
}
|
|
2601
2624
|
} else {
|
|
2602
|
-
if (match(
|
|
2625
|
+
if (match(moduleId, this.config.build.noExternal)) {
|
|
2603
2626
|
return void 0;
|
|
2604
2627
|
}
|
|
2605
|
-
if (match(
|
|
2628
|
+
if (match(moduleId, this.config.build.external) || moduleId.startsWith("node:")) {
|
|
2606
2629
|
return {
|
|
2607
|
-
id,
|
|
2630
|
+
id: moduleId,
|
|
2608
2631
|
external: true
|
|
2609
2632
|
};
|
|
2610
2633
|
}
|
|
@@ -3030,9 +3053,11 @@ function createPluginContext(plugin, environment) {
|
|
|
3030
3053
|
}, "normalizeMessage");
|
|
3031
3054
|
const log = environment.extendLog(plugin.name);
|
|
3032
3055
|
const callHookFn = /* @__PURE__ */ __name(async (hook, options, ...args) => {
|
|
3033
|
-
return callHook(
|
|
3056
|
+
return environment.$$internal.api.callHook(hook, {
|
|
3034
3057
|
sequential: true,
|
|
3035
|
-
|
|
3058
|
+
result: "merge",
|
|
3059
|
+
...options,
|
|
3060
|
+
environment
|
|
3036
3061
|
}, ...args);
|
|
3037
3062
|
}, "callHookFn");
|
|
3038
3063
|
return new Proxy({}, {
|
|
@@ -3415,7 +3440,11 @@ var PowerlinesAPI = class _PowerlinesAPI {
|
|
|
3415
3440
|
this.#context = context;
|
|
3416
3441
|
}
|
|
3417
3442
|
/**
|
|
3418
|
-
* Initialize
|
|
3443
|
+
* Initialize a Powerlines API instance
|
|
3444
|
+
*
|
|
3445
|
+
* @param workspaceRoot - The directory of the underlying workspace the Powerlines project exists in
|
|
3446
|
+
* @param config - An object containing the configuration required to run Powerlines tasks.
|
|
3447
|
+
* @returns A new instance of the Powerlines API
|
|
3419
3448
|
*/
|
|
3420
3449
|
static async from(workspaceRoot, config) {
|
|
3421
3450
|
const api = new _PowerlinesAPI(await PowerlinesAPIContext.from(workspaceRoot, config));
|
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-
|
|
4
|
+
var chunkFKZWCQXX_js = require('./chunk-FKZWCQXX.js');
|
|
5
|
+
var chunk6MIGHWXS_js = require('./chunk-6MIGHWXS.js');
|
|
6
|
+
var chunk3BM4F7DF_js = require('./chunk-3BM4F7DF.js');
|
|
7
|
+
var chunkEUCVGGMW_js = require('./chunk-EUCVGGMW.js');
|
|
8
|
+
var chunkBA3VSEVV_js = require('./chunk-BA3VSEVV.js');
|
|
9
|
+
require('./chunk-B73RQF3Y.js');
|
|
10
10
|
require('./chunk-DQI2I5KK.js');
|
|
11
11
|
require('./chunk-SHUYVCID.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
+
Object.defineProperty(exports, "docs", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunkFKZWCQXX_js.executor_default; }
|
|
18
|
+
});
|
|
15
19
|
Object.defineProperty(exports, "lint", {
|
|
16
20
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk6MIGHWXS_js.executor_default; }
|
|
18
22
|
});
|
|
19
23
|
Object.defineProperty(exports, "prepare", {
|
|
20
24
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunk3BM4F7DF_js.executor_default; }
|
|
22
26
|
});
|
|
23
27
|
Object.defineProperty(exports, "build", {
|
|
24
28
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkEUCVGGMW_js.executor_default; }
|
|
26
30
|
});
|
|
27
31
|
Object.defineProperty(exports, "clean", {
|
|
28
32
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
30
|
-
});
|
|
31
|
-
Object.defineProperty(exports, "docs", {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function () { return chunkDTWYF2BM_js.executor_default; }
|
|
33
|
+
get: function () { return chunkBA3VSEVV_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
|
|
3
|
-
export { executor_default as
|
|
4
|
-
export { executor_default as
|
|
5
|
-
export { executor_default as
|
|
6
|
-
export { executor_default as
|
|
7
|
-
import './chunk-
|
|
2
|
+
export { executor_default as docs } from './chunk-BTBIUGND.mjs';
|
|
3
|
+
export { executor_default as lint } from './chunk-QFQYFQT4.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-PE72KJBW.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-N4LRSAGW.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-WDCMFWCL.mjs';
|
|
7
|
+
import './chunk-R6ECHVU4.mjs';
|
|
8
8
|
import './chunk-OVX2CEXQ.mjs';
|
|
9
9
|
import './chunk-O6YSETKJ.mjs';
|
package/dist/index.js
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
var chunkDNMCZOZX_js = require('./chunk-DNMCZOZX.js');
|
|
4
4
|
require('./chunk-XO62WWX4.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
5
|
+
var chunkFKZWCQXX_js = require('./chunk-FKZWCQXX.js');
|
|
6
|
+
var chunk6MIGHWXS_js = require('./chunk-6MIGHWXS.js');
|
|
7
|
+
var chunk3BM4F7DF_js = require('./chunk-3BM4F7DF.js');
|
|
8
|
+
var chunkEUCVGGMW_js = require('./chunk-EUCVGGMW.js');
|
|
9
|
+
var chunkBA3VSEVV_js = require('./chunk-BA3VSEVV.js');
|
|
10
10
|
require('./chunk-N2YKXZ5R.js');
|
|
11
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
12
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-B73RQF3Y.js');
|
|
13
13
|
require('./chunk-KBRCV5NY.js');
|
|
14
14
|
require('./chunk-DQI2I5KK.js');
|
|
15
15
|
require('./chunk-IQVSZEQ6.js');
|
|
@@ -21,25 +21,25 @@ Object.defineProperty(exports, "createNodesV2", {
|
|
|
21
21
|
enumerable: true,
|
|
22
22
|
get: function () { return chunkDNMCZOZX_js.createNodesV2; }
|
|
23
23
|
});
|
|
24
|
+
Object.defineProperty(exports, "docs", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () { return chunkFKZWCQXX_js.executor_default; }
|
|
27
|
+
});
|
|
24
28
|
Object.defineProperty(exports, "lint", {
|
|
25
29
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunk6MIGHWXS_js.executor_default; }
|
|
27
31
|
});
|
|
28
32
|
Object.defineProperty(exports, "prepare", {
|
|
29
33
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunk3BM4F7DF_js.executor_default; }
|
|
31
35
|
});
|
|
32
36
|
Object.defineProperty(exports, "build", {
|
|
33
37
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkEUCVGGMW_js.executor_default; }
|
|
35
39
|
});
|
|
36
40
|
Object.defineProperty(exports, "clean", {
|
|
37
41
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
39
|
-
});
|
|
40
|
-
Object.defineProperty(exports, "docs", {
|
|
41
|
-
enumerable: true,
|
|
42
|
-
get: function () { return chunkDTWYF2BM_js.executor_default; }
|
|
42
|
+
get: function () { return chunkBA3VSEVV_js.executor_default; }
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(exports, "sync", {
|
|
45
45
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export { createNodesV2 } from './chunk-2SK7GXYX.mjs';
|
|
2
2
|
import './chunk-UV4HQO3Y.mjs';
|
|
3
|
-
export { executor_default as
|
|
4
|
-
export { executor_default as
|
|
5
|
-
export { executor_default as
|
|
6
|
-
export { executor_default as
|
|
7
|
-
export { executor_default as
|
|
3
|
+
export { executor_default as docs } from './chunk-BTBIUGND.mjs';
|
|
4
|
+
export { executor_default as lint } from './chunk-QFQYFQT4.mjs';
|
|
5
|
+
export { executor_default as prepare } from './chunk-PE72KJBW.mjs';
|
|
6
|
+
export { executor_default as build } from './chunk-N4LRSAGW.mjs';
|
|
7
|
+
export { executor_default as clean } from './chunk-WDCMFWCL.mjs';
|
|
8
8
|
import './chunk-23KFTIT2.mjs';
|
|
9
9
|
export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
|
|
10
|
-
import './chunk-
|
|
10
|
+
import './chunk-R6ECHVU4.mjs';
|
|
11
11
|
import './chunk-HJZ2I6NE.mjs';
|
|
12
12
|
import './chunk-OVX2CEXQ.mjs';
|
|
13
13
|
import './chunk-IC47MFKB.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkB73RQF3Y_js = require('../../chunk-B73RQF3Y.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 chunkB73RQF3Y_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 chunkEUCVGGMW_js = require('../../../chunk-EUCVGGMW.js');
|
|
6
|
+
require('../../../chunk-B73RQF3Y.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 chunkEUCVGGMW_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkEUCVGGMW_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-N4LRSAGW.mjs';
|
|
2
|
+
import '../../../chunk-R6ECHVU4.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 chunkBA3VSEVV_js = require('../../../chunk-BA3VSEVV.js');
|
|
6
|
+
require('../../../chunk-B73RQF3Y.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 chunkBA3VSEVV_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkBA3VSEVV_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-WDCMFWCL.mjs';
|
|
2
|
+
import '../../../chunk-R6ECHVU4.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 chunkFKZWCQXX_js = require('../../../chunk-FKZWCQXX.js');
|
|
6
|
+
require('../../../chunk-B73RQF3Y.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 chunkFKZWCQXX_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkFKZWCQXX_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-BTBIUGND.mjs';
|
|
2
|
+
import '../../../chunk-R6ECHVU4.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 chunk6MIGHWXS_js = require('../../../chunk-6MIGHWXS.js');
|
|
6
|
+
require('../../../chunk-B73RQF3Y.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 chunk6MIGHWXS_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk6MIGHWXS_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-QFQYFQT4.mjs';
|
|
2
|
+
import '../../../chunk-R6ECHVU4.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 chunk3BM4F7DF_js = require('../../../chunk-3BM4F7DF.js');
|
|
6
|
+
require('../../../chunk-B73RQF3Y.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 chunk3BM4F7DF_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk3BM4F7DF_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-PE72KJBW.mjs';
|
|
2
|
+
import '../../../chunk-R6ECHVU4.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/nx",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.46",
|
|
4
4
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"defu": "^6.1.4",
|
|
197
197
|
"jiti": "^2.6.1",
|
|
198
198
|
"nx": "^22.1.3",
|
|
199
|
-
"powerlines": "^0.
|
|
199
|
+
"powerlines": "^0.27.0"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
202
|
"@nx/workspace": "^22.1.3",
|
|
@@ -210,5 +210,5 @@
|
|
|
210
210
|
"publishConfig": { "access": "public" },
|
|
211
211
|
"executors": "./executors.json",
|
|
212
212
|
"generators": "./generators.json",
|
|
213
|
-
"gitHead": "
|
|
213
|
+
"gitHead": "bbbbe4fd720918401d58e4553d93ff2018d78e6a"
|
|
214
214
|
}
|