@powerlines/nx 0.11.85 → 0.11.87
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-P2EVLPRY.mjs → chunk-2EVSW3PI.mjs} +1 -1
- package/dist/{chunk-FY4NNT2Z.js → chunk-4XOSJQ2L.js} +8 -8
- package/dist/{chunk-3I55EVI5.js → chunk-5CYEAIEZ.js} +2 -2
- package/dist/{chunk-PRIOQCML.mjs → chunk-655IF4XR.mjs} +1 -1
- package/dist/{chunk-PS5NC5LU.js → chunk-A6ZFPH2S.js} +2 -2
- package/dist/{chunk-BNQ53BX2.js → chunk-CKLF6WS7.js} +2 -2
- package/dist/{chunk-2IUC42NX.mjs → chunk-EIQ37LFN.mjs} +1 -1
- package/dist/{chunk-K7AIZBW7.js → chunk-JQQWHSDW.js} +2 -2
- package/dist/{chunk-KSXMEJ6M.mjs → chunk-ML2F77YJ.mjs} +8 -8
- package/dist/{chunk-5VPIXKFH.js → chunk-SHJFN377.js} +2 -2
- package/dist/{chunk-DHQCBZG6.mjs → chunk-SKLNP5UN.mjs} +1 -1
- package/dist/{chunk-X47TB6FO.mjs → chunk-TISA64TJ.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.86](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.86) (01/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **powerlines** to **v0.37.30**
|
|
10
|
+
|
|
11
|
+
## [0.11.85](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.85) (01/14/2026)
|
|
12
|
+
|
|
13
|
+
### Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated **powerlines** to **v0.37.29**
|
|
16
|
+
|
|
5
17
|
## [0.11.84](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.84) (01/14/2026)
|
|
6
18
|
|
|
7
19
|
### Updated Dependencies
|
|
@@ -2128,7 +2128,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2128
2128
|
ret[metadata.id] = {
|
|
2129
2129
|
id: metadata.id,
|
|
2130
2130
|
type: metadata.type,
|
|
2131
|
-
timestamp: metadata.timestamp
|
|
2131
|
+
timestamp: metadata.timestamp ?? Date.now(),
|
|
2132
2132
|
properties: metadata._hasProperties() ? metadata.properties.values().reduce((ret2, item) => {
|
|
2133
2133
|
ret2[item.key] = item.value;
|
|
2134
2134
|
return ret2;
|
|
@@ -2483,12 +2483,12 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2483
2483
|
*/
|
|
2484
2484
|
async read(path) {
|
|
2485
2485
|
const filePath = await this.resolve(path);
|
|
2486
|
-
if (!filePath) {
|
|
2486
|
+
if (!filePath || !this.existsSync(filePath)) {
|
|
2487
2487
|
return void 0;
|
|
2488
2488
|
}
|
|
2489
|
-
const {
|
|
2489
|
+
const { adapter } = this.#getStorage(filePath);
|
|
2490
2490
|
this.#log(types.LogLevelLabel.TRACE, `Reading ${adapter.name} file: ${filePath}`);
|
|
2491
|
-
return await adapter.get(
|
|
2491
|
+
return await adapter.get(filePath) ?? void 0;
|
|
2492
2492
|
}
|
|
2493
2493
|
/**
|
|
2494
2494
|
* Synchronously reads a file from the virtual file system (VFS).
|
|
@@ -2498,12 +2498,12 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2498
2498
|
*/
|
|
2499
2499
|
readSync(path) {
|
|
2500
2500
|
const filePath = this.resolveSync(path);
|
|
2501
|
-
if (!filePath) {
|
|
2501
|
+
if (!filePath || !this.existsSync(filePath)) {
|
|
2502
2502
|
return void 0;
|
|
2503
2503
|
}
|
|
2504
|
-
const {
|
|
2504
|
+
const { adapter } = this.#getStorage(filePath);
|
|
2505
2505
|
this.#log(types.LogLevelLabel.TRACE, `Reading ${adapter.name} file: ${filePath}`);
|
|
2506
|
-
return adapter.getSync(
|
|
2506
|
+
return adapter.getSync(filePath) ?? void 0;
|
|
2507
2507
|
}
|
|
2508
2508
|
/**
|
|
2509
2509
|
* Writes a file to the virtual file system (VFS).
|
|
@@ -2796,7 +2796,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2796
2796
|
const fileMetadata = metadata.get(index);
|
|
2797
2797
|
fileMetadata.id = id;
|
|
2798
2798
|
fileMetadata.type = value.type;
|
|
2799
|
-
fileMetadata.timestamp = value.timestamp ??
|
|
2799
|
+
fileMetadata.timestamp = value.timestamp ?? Date.now();
|
|
2800
2800
|
if (value.properties) {
|
|
2801
2801
|
const props = fileMetadata._initProperties(Object.keys(value.properties).length);
|
|
2802
2802
|
Object.entries(value.properties).filter(([, val]) => isSetString.isSetString(val)).forEach(([key, val], index2) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk4XOSJQ2L_js = require('./chunk-4XOSJQ2L.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 = chunk4XOSJQ2L_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 chunk4XOSJQ2L_js = require('./chunk-4XOSJQ2L.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 = chunk4XOSJQ2L_js.withExecutor("docs", 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 chunk4XOSJQ2L_js = require('./chunk-4XOSJQ2L.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 = chunk4XOSJQ2L_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 chunk4XOSJQ2L_js = require('./chunk-4XOSJQ2L.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 = chunk4XOSJQ2L_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -2099,7 +2099,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2099
2099
|
ret[metadata.id] = {
|
|
2100
2100
|
id: metadata.id,
|
|
2101
2101
|
type: metadata.type,
|
|
2102
|
-
timestamp: metadata.timestamp
|
|
2102
|
+
timestamp: metadata.timestamp ?? Date.now(),
|
|
2103
2103
|
properties: metadata._hasProperties() ? metadata.properties.values().reduce((ret2, item) => {
|
|
2104
2104
|
ret2[item.key] = item.value;
|
|
2105
2105
|
return ret2;
|
|
@@ -2454,12 +2454,12 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2454
2454
|
*/
|
|
2455
2455
|
async read(path) {
|
|
2456
2456
|
const filePath = await this.resolve(path);
|
|
2457
|
-
if (!filePath) {
|
|
2457
|
+
if (!filePath || !this.existsSync(filePath)) {
|
|
2458
2458
|
return void 0;
|
|
2459
2459
|
}
|
|
2460
|
-
const {
|
|
2460
|
+
const { adapter } = this.#getStorage(filePath);
|
|
2461
2461
|
this.#log(LogLevelLabel.TRACE, `Reading ${adapter.name} file: ${filePath}`);
|
|
2462
|
-
return await adapter.get(
|
|
2462
|
+
return await adapter.get(filePath) ?? void 0;
|
|
2463
2463
|
}
|
|
2464
2464
|
/**
|
|
2465
2465
|
* Synchronously reads a file from the virtual file system (VFS).
|
|
@@ -2469,12 +2469,12 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2469
2469
|
*/
|
|
2470
2470
|
readSync(path) {
|
|
2471
2471
|
const filePath = this.resolveSync(path);
|
|
2472
|
-
if (!filePath) {
|
|
2472
|
+
if (!filePath || !this.existsSync(filePath)) {
|
|
2473
2473
|
return void 0;
|
|
2474
2474
|
}
|
|
2475
|
-
const {
|
|
2475
|
+
const { adapter } = this.#getStorage(filePath);
|
|
2476
2476
|
this.#log(LogLevelLabel.TRACE, `Reading ${adapter.name} file: ${filePath}`);
|
|
2477
|
-
return adapter.getSync(
|
|
2477
|
+
return adapter.getSync(filePath) ?? void 0;
|
|
2478
2478
|
}
|
|
2479
2479
|
/**
|
|
2480
2480
|
* Writes a file to the virtual file system (VFS).
|
|
@@ -2767,7 +2767,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2767
2767
|
const fileMetadata = metadata.get(index);
|
|
2768
2768
|
fileMetadata.id = id;
|
|
2769
2769
|
fileMetadata.type = value.type;
|
|
2770
|
-
fileMetadata.timestamp = value.timestamp ??
|
|
2770
|
+
fileMetadata.timestamp = value.timestamp ?? Date.now();
|
|
2771
2771
|
if (value.properties) {
|
|
2772
2772
|
const props = fileMetadata._initProperties(Object.keys(value.properties).length);
|
|
2773
2773
|
Object.entries(value.properties).filter(([, val]) => isSetString(val)).forEach(([key, val], index2) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk4XOSJQ2L_js = require('./chunk-4XOSJQ2L.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 = chunk4XOSJQ2L_js.withExecutor("clean", 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 chunkJQQWHSDW_js = require('./chunk-JQQWHSDW.js');
|
|
5
|
+
var chunk5CYEAIEZ_js = require('./chunk-5CYEAIEZ.js');
|
|
6
|
+
var chunkCKLF6WS7_js = require('./chunk-CKLF6WS7.js');
|
|
7
|
+
var chunkSHJFN377_js = require('./chunk-SHJFN377.js');
|
|
8
|
+
var chunkA6ZFPH2S_js = require('./chunk-A6ZFPH2S.js');
|
|
9
|
+
require('./chunk-4XOSJQ2L.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 chunkJQQWHSDW_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk5CYEAIEZ_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkCKLF6WS7_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkSHJFN377_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkA6ZFPH2S_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-2EVSW3PI.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-EIQ37LFN.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-TISA64TJ.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-655IF4XR.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-SKLNP5UN.mjs';
|
|
7
|
+
import './chunk-ML2F77YJ.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 chunkJQQWHSDW_js = require('./chunk-JQQWHSDW.js');
|
|
6
|
+
var chunk5CYEAIEZ_js = require('./chunk-5CYEAIEZ.js');
|
|
7
|
+
var chunkCKLF6WS7_js = require('./chunk-CKLF6WS7.js');
|
|
8
|
+
var chunkSHJFN377_js = require('./chunk-SHJFN377.js');
|
|
9
|
+
var chunkA6ZFPH2S_js = require('./chunk-A6ZFPH2S.js');
|
|
10
10
|
require('./chunk-N2YKXZ5R.js');
|
|
11
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
12
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-4XOSJQ2L.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 chunkJQQWHSDW_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunk5CYEAIEZ_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkCKLF6WS7_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkSHJFN377_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkA6ZFPH2S_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-2EVSW3PI.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-EIQ37LFN.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-TISA64TJ.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-655IF4XR.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-SKLNP5UN.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-ML2F77YJ.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 chunk4XOSJQ2L_js = require('../../chunk-4XOSJQ2L.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 chunk4XOSJQ2L_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 chunkCKLF6WS7_js = require('../../../chunk-CKLF6WS7.js');
|
|
6
|
+
require('../../../chunk-4XOSJQ2L.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 chunkCKLF6WS7_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkCKLF6WS7_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-TISA64TJ.mjs';
|
|
2
|
+
import '../../../chunk-ML2F77YJ.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 chunkSHJFN377_js = require('../../../chunk-SHJFN377.js');
|
|
6
|
+
require('../../../chunk-4XOSJQ2L.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 chunkSHJFN377_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkSHJFN377_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-655IF4XR.mjs';
|
|
2
|
+
import '../../../chunk-ML2F77YJ.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 chunkA6ZFPH2S_js = require('../../../chunk-A6ZFPH2S.js');
|
|
6
|
+
require('../../../chunk-4XOSJQ2L.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 chunkA6ZFPH2S_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkA6ZFPH2S_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-SKLNP5UN.mjs';
|
|
2
|
+
import '../../../chunk-ML2F77YJ.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 chunkJQQWHSDW_js = require('../../../chunk-JQQWHSDW.js');
|
|
6
|
+
require('../../../chunk-4XOSJQ2L.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 chunkJQQWHSDW_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkJQQWHSDW_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-2EVSW3PI.mjs';
|
|
2
|
+
import '../../../chunk-ML2F77YJ.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 chunk5CYEAIEZ_js = require('../../../chunk-5CYEAIEZ.js');
|
|
6
|
+
require('../../../chunk-4XOSJQ2L.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 chunk5CYEAIEZ_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk5CYEAIEZ_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-EIQ37LFN.mjs';
|
|
2
|
+
import '../../../chunk-ML2F77YJ.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.87",
|
|
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.31"
|
|
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": "0485d24be00f3788377fb78db658225c037638a3"
|
|
214
214
|
}
|