@powerlines/nx 0.11.63 → 0.11.65
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 +12 -0
- package/dist/{chunk-GLILVGQA.js → chunk-6CR2DDAW.js} +8 -6
- package/dist/{chunk-JGB2G45R.mjs → chunk-BVWBOWHA.mjs} +1 -1
- package/dist/{chunk-BAG2JY3V.mjs → chunk-FCEZIM2L.mjs} +9 -7
- package/dist/{chunk-VNLDTOVY.mjs → chunk-HKLM3W45.mjs} +1 -1
- package/dist/{chunk-2F7XWCYX.js → chunk-LADSWQHP.js} +2 -2
- package/dist/{chunk-GGNN4BMX.js → chunk-M3EJEH3W.js} +2 -2
- package/dist/{chunk-MCM65BC5.js → chunk-NRHCFPH7.js} +2 -2
- package/dist/{chunk-MCODZWC2.mjs → chunk-SR3EE37P.mjs} +1 -1
- package/dist/{chunk-YCJF4OFO.js → chunk-UYWHJJWQ.js} +2 -2
- package/dist/{chunk-A2BY3PBV.js → chunk-VJN6MO6F.js} +2 -2
- package/dist/{chunk-FJHQ76PZ.mjs → chunk-Z5VRAFS4.mjs} +1 -1
- package/dist/{chunk-CWOBB3F7.mjs → chunk-ZK4APN4D.mjs} +1 -1
- package/dist/executors.js +11 -11
- package/dist/executors.mjs +6 -6
- package/dist/index.js +11 -11
- 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,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Powerlines - Nx
|
|
4
4
|
|
|
5
|
+
## [0.11.64](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.64) (01/07/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **powerlines** to **v0.37.8**
|
|
10
|
+
|
|
11
|
+
## [0.11.63](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.63) (01/07/2026)
|
|
12
|
+
|
|
13
|
+
### Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated **powerlines** to **v0.37.7**
|
|
16
|
+
|
|
5
17
|
## [0.11.62](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.62) (01/07/2026)
|
|
6
18
|
|
|
7
19
|
### Updated Dependencies
|
|
@@ -3227,16 +3227,17 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3227
3227
|
* @param options - Additional options for writing the file
|
|
3228
3228
|
*/
|
|
3229
3229
|
async emit(code, path, options = {}) {
|
|
3230
|
+
const filePath = options.extension ? filePathFns.findFileExtensionSafe(path) ? options.extension.startsWith(".") ? path.replace(filePathFns.findFileDotExtensionSafe(path), options.extension) : path.replace(filePathFns.findFileExtensionSafe(path), options.extension) : options.extension.startsWith(".") ? `${path}${options.extension}` : `${path}.${options.extension}` : filePathFns.findFileExtensionSafe(path) ? path : `${path}.ts`;
|
|
3230
3231
|
if (isFunction.isFunction(this.emitFile) && options.emitWithBundler) {
|
|
3231
3232
|
return this.emitFile({
|
|
3232
3233
|
needsCodeReference: options.needsCodeReference,
|
|
3233
3234
|
originalFileName: options.originalFileName,
|
|
3234
|
-
fileName:
|
|
3235
|
+
fileName: filePath,
|
|
3235
3236
|
source: code,
|
|
3236
3237
|
type: "asset"
|
|
3237
3238
|
});
|
|
3238
3239
|
}
|
|
3239
|
-
return this.fs.write(
|
|
3240
|
+
return this.fs.write(filePath, code, options);
|
|
3240
3241
|
}
|
|
3241
3242
|
/**
|
|
3242
3243
|
* Synchronously resolves a file and writes it to the VFS if it does not already exist
|
|
@@ -3246,16 +3247,17 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3246
3247
|
* @param options - Additional options for writing the file
|
|
3247
3248
|
*/
|
|
3248
3249
|
emitSync(code, path, options = {}) {
|
|
3250
|
+
const filePath = options.extension ? filePathFns.findFileExtensionSafe(path) ? options.extension.startsWith(".") ? path.replace(filePathFns.findFileDotExtensionSafe(path), options.extension) : path.replace(filePathFns.findFileExtensionSafe(path), options.extension) : options.extension.startsWith(".") ? `${path}${options.extension}` : `${path}.${options.extension}` : filePathFns.findFileExtensionSafe(path) ? path : `${path}.ts`;
|
|
3249
3251
|
if (isFunction.isFunction(this.emitFile) && options.emitWithBundler) {
|
|
3250
3252
|
return this.emitFile({
|
|
3251
3253
|
needsCodeReference: options.needsCodeReference,
|
|
3252
3254
|
originalFileName: options.originalFileName,
|
|
3253
|
-
fileName:
|
|
3255
|
+
fileName: filePath,
|
|
3254
3256
|
source: code,
|
|
3255
3257
|
type: "asset"
|
|
3256
3258
|
});
|
|
3257
3259
|
}
|
|
3258
|
-
return this.fs.writeSync(
|
|
3260
|
+
return this.fs.writeSync(filePath, code, options);
|
|
3259
3261
|
}
|
|
3260
3262
|
/**
|
|
3261
3263
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
@@ -3331,7 +3333,7 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3331
3333
|
if (!isSetString.isSetString(id)) {
|
|
3332
3334
|
throw new Error(`The builtin id must be a non-empty string. Received: ${String(id)}`);
|
|
3333
3335
|
}
|
|
3334
|
-
return this.emit(code,
|
|
3336
|
+
return this.emit(code, id, defu6__default.default(options, {
|
|
3335
3337
|
meta: {
|
|
3336
3338
|
type: "builtin",
|
|
3337
3339
|
id
|
|
@@ -3352,7 +3354,7 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3352
3354
|
if (!isSetString.isSetString(id)) {
|
|
3353
3355
|
throw new Error(`The builtin id must be a non-empty string. Received: ${String(id)}`);
|
|
3354
3356
|
}
|
|
3355
|
-
return this.emitSync(code,
|
|
3357
|
+
return this.emitSync(code, id, defu6__default.default(options, {
|
|
3356
3358
|
meta: {
|
|
3357
3359
|
type: "builtin",
|
|
3358
3360
|
id
|
|
@@ -35,7 +35,7 @@ import { getPackageName, hasPackageVersion, getPackageVersion } from '@stryke/st
|
|
|
35
35
|
import { getObjectDiff } from '@donedeal0/superdiff';
|
|
36
36
|
import { readJsonFile, readJsonFileSync } from '@stryke/fs/json';
|
|
37
37
|
import { StormJSON } from '@stryke/json/storm-json';
|
|
38
|
-
import { hasFileExtension, findFilePath, findFileName,
|
|
38
|
+
import { hasFileExtension, findFilePath, findFileName, findFileExtensionSafe, findFileDotExtensionSafe, relativePath } from '@stryke/path/file-path-fns';
|
|
39
39
|
import { titleCase } from '@stryke/string-format/title-case';
|
|
40
40
|
import { existsSync, exists } from '@stryke/fs/exists';
|
|
41
41
|
import { getEnvPaths } from '@stryke/env/get-env-paths';
|
|
@@ -3198,16 +3198,17 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3198
3198
|
* @param options - Additional options for writing the file
|
|
3199
3199
|
*/
|
|
3200
3200
|
async emit(code, path, options = {}) {
|
|
3201
|
+
const filePath = options.extension ? findFileExtensionSafe(path) ? options.extension.startsWith(".") ? path.replace(findFileDotExtensionSafe(path), options.extension) : path.replace(findFileExtensionSafe(path), options.extension) : options.extension.startsWith(".") ? `${path}${options.extension}` : `${path}.${options.extension}` : findFileExtensionSafe(path) ? path : `${path}.ts`;
|
|
3201
3202
|
if (isFunction(this.emitFile) && options.emitWithBundler) {
|
|
3202
3203
|
return this.emitFile({
|
|
3203
3204
|
needsCodeReference: options.needsCodeReference,
|
|
3204
3205
|
originalFileName: options.originalFileName,
|
|
3205
|
-
fileName:
|
|
3206
|
+
fileName: filePath,
|
|
3206
3207
|
source: code,
|
|
3207
3208
|
type: "asset"
|
|
3208
3209
|
});
|
|
3209
3210
|
}
|
|
3210
|
-
return this.fs.write(
|
|
3211
|
+
return this.fs.write(filePath, code, options);
|
|
3211
3212
|
}
|
|
3212
3213
|
/**
|
|
3213
3214
|
* Synchronously resolves a file and writes it to the VFS if it does not already exist
|
|
@@ -3217,16 +3218,17 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3217
3218
|
* @param options - Additional options for writing the file
|
|
3218
3219
|
*/
|
|
3219
3220
|
emitSync(code, path, options = {}) {
|
|
3221
|
+
const filePath = options.extension ? findFileExtensionSafe(path) ? options.extension.startsWith(".") ? path.replace(findFileDotExtensionSafe(path), options.extension) : path.replace(findFileExtensionSafe(path), options.extension) : options.extension.startsWith(".") ? `${path}${options.extension}` : `${path}.${options.extension}` : findFileExtensionSafe(path) ? path : `${path}.ts`;
|
|
3220
3222
|
if (isFunction(this.emitFile) && options.emitWithBundler) {
|
|
3221
3223
|
return this.emitFile({
|
|
3222
3224
|
needsCodeReference: options.needsCodeReference,
|
|
3223
3225
|
originalFileName: options.originalFileName,
|
|
3224
|
-
fileName:
|
|
3226
|
+
fileName: filePath,
|
|
3225
3227
|
source: code,
|
|
3226
3228
|
type: "asset"
|
|
3227
3229
|
});
|
|
3228
3230
|
}
|
|
3229
|
-
return this.fs.writeSync(
|
|
3231
|
+
return this.fs.writeSync(filePath, code, options);
|
|
3230
3232
|
}
|
|
3231
3233
|
/**
|
|
3232
3234
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
@@ -3302,7 +3304,7 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3302
3304
|
if (!isSetString(id)) {
|
|
3303
3305
|
throw new Error(`The builtin id must be a non-empty string. Received: ${String(id)}`);
|
|
3304
3306
|
}
|
|
3305
|
-
return this.emit(code,
|
|
3307
|
+
return this.emit(code, id, defu6(options, {
|
|
3306
3308
|
meta: {
|
|
3307
3309
|
type: "builtin",
|
|
3308
3310
|
id
|
|
@@ -3323,7 +3325,7 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3323
3325
|
if (!isSetString(id)) {
|
|
3324
3326
|
throw new Error(`The builtin id must be a non-empty string. Received: ${String(id)}`);
|
|
3325
3327
|
}
|
|
3326
|
-
return this.emitSync(code,
|
|
3328
|
+
return this.emitSync(code, id, defu6(options, {
|
|
3327
3329
|
meta: {
|
|
3328
3330
|
type: "builtin",
|
|
3329
3331
|
id
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk6CR2DDAW_js = require('./chunk-6CR2DDAW.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 = chunk6CR2DDAW_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 chunk6CR2DDAW_js = require('./chunk-6CR2DDAW.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 = chunk6CR2DDAW_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 chunk6CR2DDAW_js = require('./chunk-6CR2DDAW.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 = chunk6CR2DDAW_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 chunk6CR2DDAW_js = require('./chunk-6CR2DDAW.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 = chunk6CR2DDAW_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 chunk6CR2DDAW_js = require('./chunk-6CR2DDAW.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 = chunk6CR2DDAW_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 chunkM3EJEH3W_js = require('./chunk-M3EJEH3W.js');
|
|
5
|
+
var chunkNRHCFPH7_js = require('./chunk-NRHCFPH7.js');
|
|
6
|
+
var chunkUYWHJJWQ_js = require('./chunk-UYWHJJWQ.js');
|
|
7
|
+
var chunkLADSWQHP_js = require('./chunk-LADSWQHP.js');
|
|
8
|
+
var chunkVJN6MO6F_js = require('./chunk-VJN6MO6F.js');
|
|
9
|
+
require('./chunk-6CR2DDAW.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 chunkM3EJEH3W_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkNRHCFPH7_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkUYWHJJWQ_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkLADSWQHP_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkVJN6MO6F_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-ZK4APN4D.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-HKLM3W45.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-Z5VRAFS4.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-BVWBOWHA.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-SR3EE37P.mjs';
|
|
7
|
+
import './chunk-FCEZIM2L.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 chunkTNFRQNSW_js = require('./chunk-TNFRQNSW.js');
|
|
4
4
|
require('./chunk-XO62WWX4.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
5
|
+
var chunkM3EJEH3W_js = require('./chunk-M3EJEH3W.js');
|
|
6
|
+
var chunkNRHCFPH7_js = require('./chunk-NRHCFPH7.js');
|
|
7
|
+
var chunkUYWHJJWQ_js = require('./chunk-UYWHJJWQ.js');
|
|
8
|
+
var chunkLADSWQHP_js = require('./chunk-LADSWQHP.js');
|
|
9
|
+
var chunkVJN6MO6F_js = require('./chunk-VJN6MO6F.js');
|
|
10
10
|
require('./chunk-N2YKXZ5R.js');
|
|
11
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
12
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-6CR2DDAW.js');
|
|
13
13
|
require('./chunk-QSMJD4CD.js');
|
|
14
14
|
require('./chunk-DQI2I5KK.js');
|
|
15
15
|
require('./chunk-IQVSZEQ6.js');
|
|
@@ -23,23 +23,23 @@ Object.defineProperty(exports, "createNodesV2", {
|
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "lint", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkM3EJEH3W_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkNRHCFPH7_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkUYWHJJWQ_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkLADSWQHP_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkVJN6MO6F_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-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-ZK4APN4D.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-HKLM3W45.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-Z5VRAFS4.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-BVWBOWHA.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-SR3EE37P.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-FCEZIM2L.mjs';
|
|
11
11
|
import './chunk-LK4PXBKI.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 chunk6CR2DDAW_js = require('../../chunk-6CR2DDAW.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 chunk6CR2DDAW_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 chunkUYWHJJWQ_js = require('../../../chunk-UYWHJJWQ.js');
|
|
6
|
+
require('../../../chunk-6CR2DDAW.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 chunkUYWHJJWQ_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkUYWHJJWQ_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-Z5VRAFS4.mjs';
|
|
2
|
+
import '../../../chunk-FCEZIM2L.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 chunkLADSWQHP_js = require('../../../chunk-LADSWQHP.js');
|
|
6
|
+
require('../../../chunk-6CR2DDAW.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 chunkLADSWQHP_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkLADSWQHP_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-BVWBOWHA.mjs';
|
|
2
|
+
import '../../../chunk-FCEZIM2L.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 chunkVJN6MO6F_js = require('../../../chunk-VJN6MO6F.js');
|
|
6
|
+
require('../../../chunk-6CR2DDAW.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 chunkVJN6MO6F_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkVJN6MO6F_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-SR3EE37P.mjs';
|
|
2
|
+
import '../../../chunk-FCEZIM2L.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 chunkM3EJEH3W_js = require('../../../chunk-M3EJEH3W.js');
|
|
6
|
+
require('../../../chunk-6CR2DDAW.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 chunkM3EJEH3W_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkM3EJEH3W_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-ZK4APN4D.mjs';
|
|
2
|
+
import '../../../chunk-FCEZIM2L.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 chunkNRHCFPH7_js = require('../../../chunk-NRHCFPH7.js');
|
|
6
|
+
require('../../../chunk-6CR2DDAW.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 chunkNRHCFPH7_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkNRHCFPH7_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-HKLM3W45.mjs';
|
|
2
|
+
import '../../../chunk-FCEZIM2L.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.11.
|
|
3
|
+
"version": "0.11.65",
|
|
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.3.3",
|
|
199
|
-
"powerlines": "^0.37.
|
|
199
|
+
"powerlines": "^0.37.9"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
202
|
"@nx/workspace": "^22.3.3",
|
|
@@ -210,5 +210,5 @@
|
|
|
210
210
|
"publishConfig": { "access": "public" },
|
|
211
211
|
"executors": "./executors.json",
|
|
212
212
|
"generators": "./generators.json",
|
|
213
|
-
"gitHead": "
|
|
213
|
+
"gitHead": "c8f7d40e33243f2a610de2c53c050f3b2f2dcd31"
|
|
214
214
|
}
|