@powerlines/nx 0.11.79 → 0.11.80
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-N5VFA4B5.mjs → chunk-B2KGTXN3.mjs} +1 -1
- package/dist/{chunk-IKGYQ4RA.js → chunk-FWNDFI73.js} +46 -6
- package/dist/{chunk-WSVYUMD2.mjs → chunk-GJINPPMS.mjs} +1 -1
- package/dist/{chunk-DY7VF6I6.js → chunk-IBC7GOGC.js} +2 -2
- package/dist/{chunk-CMQJAVYR.js → chunk-JTE3DKCE.js} +2 -2
- package/dist/{chunk-PGKXD4OE.mjs → chunk-KEA7QWGK.mjs} +46 -6
- package/dist/{chunk-VVUT4VFF.mjs → chunk-MAUL7XPQ.mjs} +1 -1
- package/dist/{chunk-TEG5246D.js → chunk-RDVMU2LL.js} +2 -2
- package/dist/{chunk-YP7EEWJA.mjs → chunk-THJFDLTT.mjs} +1 -1
- package/dist/{chunk-OH2DDWA6.mjs → chunk-V3L4CNNL.mjs} +1 -1
- package/dist/{chunk-D6XWVAIZ.js → chunk-YD6IO77Y.js} +2 -2
- package/dist/{chunk-RW2XNZEX.js → chunk-ZQ4DS5UO.js} +2 -2
- 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 +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Powerlines - Nx
|
|
4
4
|
|
|
5
|
+
## [0.11.79](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.79) (01/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **powerlines** to **v0.37.23**
|
|
10
|
+
|
|
5
11
|
## [0.11.78](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.78) (01/14/2026)
|
|
6
12
|
|
|
7
13
|
### Updated Dependencies
|
|
@@ -1868,7 +1868,9 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1868
1868
|
const result2 = new _VirtualFileSystem(context, fs);
|
|
1869
1869
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1870
1870
|
await Promise.all(fs.storage.values().map(async (file) => {
|
|
1871
|
-
|
|
1871
|
+
if (file.path && file.code) {
|
|
1872
|
+
await result2.write(file.path, file.code);
|
|
1873
|
+
}
|
|
1872
1874
|
}));
|
|
1873
1875
|
}
|
|
1874
1876
|
}
|
|
@@ -1913,19 +1915,51 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1913
1915
|
* @returns A new virtual file system instance.
|
|
1914
1916
|
*/
|
|
1915
1917
|
static createSync(context) {
|
|
1918
|
+
context.debug("Starting virtual file system (VFS) initialization processes...");
|
|
1916
1919
|
if (!context.config.skipCache && exists.existsSync(joinPaths.joinPaths(context.dataPath, "fs.bin"))) {
|
|
1917
1920
|
const buffer$1 = buffer.readFileBufferSync(joinPaths.joinPaths(context.dataPath, "fs.bin"));
|
|
1918
1921
|
const message2 = new $__namespace.Message(buffer$1, false);
|
|
1919
1922
|
const fs = message2.getRoot(FileSystem);
|
|
1920
|
-
const
|
|
1923
|
+
const result2 = new _VirtualFileSystem(context, fs);
|
|
1921
1924
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1922
1925
|
fs.storage.values().map((file) => {
|
|
1923
|
-
|
|
1926
|
+
result2.writeSync(file.path, file.code);
|
|
1924
1927
|
});
|
|
1925
1928
|
}
|
|
1926
1929
|
}
|
|
1927
1930
|
const message = new $__namespace.Message();
|
|
1928
|
-
|
|
1931
|
+
const result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
|
|
1932
|
+
result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
|
|
1933
|
+
if (result.metadata) {
|
|
1934
|
+
result.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.metadata).length} previously stored metadata records...`);
|
|
1935
|
+
const entry = Object.entries(result.metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
|
|
1936
|
+
if (meta.properties) {
|
|
1937
|
+
const typeDefinition = {
|
|
1938
|
+
file: path
|
|
1939
|
+
};
|
|
1940
|
+
if (isSetString.isSetString(meta.properties.name)) {
|
|
1941
|
+
typeDefinition.name = meta.properties.name;
|
|
1942
|
+
}
|
|
1943
|
+
if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
|
|
1944
|
+
typeDefinition.input ??= {};
|
|
1945
|
+
if (isSetString.isSetString(meta.properties["input.file"])) {
|
|
1946
|
+
typeDefinition.input.file = meta.properties["input.file"];
|
|
1947
|
+
}
|
|
1948
|
+
if (isSetString.isSetString(meta.properties["input.name"])) {
|
|
1949
|
+
typeDefinition.input.name = meta.properties["input.name"];
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
if (isSetString.isSetString(meta.properties.output)) {
|
|
1953
|
+
typeDefinition.output = meta.properties.output;
|
|
1954
|
+
}
|
|
1955
|
+
return typeDefinition;
|
|
1956
|
+
}
|
|
1957
|
+
return null;
|
|
1958
|
+
}).filter(Boolean);
|
|
1959
|
+
result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
|
|
1960
|
+
context.entry = entry;
|
|
1961
|
+
}
|
|
1962
|
+
return result;
|
|
1929
1963
|
}
|
|
1930
1964
|
/**
|
|
1931
1965
|
* A map of file ids to their metadata.
|
|
@@ -2427,9 +2461,15 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2427
2461
|
async write(path, data = "", options = {}) {
|
|
2428
2462
|
const meta = options.meta ?? {};
|
|
2429
2463
|
const { relativeKey, adapter } = this.#getStorage(options.storage || path);
|
|
2464
|
+
this.#log(types.LogLevelLabel.TRACE, `Writing ${this.#normalizePath(relativeKey)} to ${adapter.name === "virtual" ? "the virtual file system" : adapter.name === "file-system" ? "the local file system" : adapter.name} (size: ${prettyBytes.prettyBytes(new buffer$1.Blob(toArray.toArray(data)).size)})`);
|
|
2430
2465
|
let code = data;
|
|
2431
|
-
|
|
2432
|
-
|
|
2466
|
+
try {
|
|
2467
|
+
if (!options.skipFormat) {
|
|
2468
|
+
code = await format(this.#normalizePath(path), data);
|
|
2469
|
+
}
|
|
2470
|
+
} catch (err) {
|
|
2471
|
+
this.#log(types.LogLevelLabel.WARN, `Failed to format file ${this.#normalizePath(path)} before writing: ${err.message}`);
|
|
2472
|
+
code = data;
|
|
2433
2473
|
}
|
|
2434
2474
|
this.#log(types.LogLevelLabel.TRACE, `Writing ${this.#normalizePath(relativeKey)} to ${adapter.name === "virtual" ? "the virtual file system" : adapter.name === "file-system" ? "the local file system" : adapter.name} (size: ${prettyBytes.prettyBytes(new buffer$1.Blob(toArray.toArray(code)).size)})`);
|
|
2435
2475
|
const id = meta.id || this.#normalizeId(relativeKey);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkFWNDFI73_js = require('./chunk-FWNDFI73.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 = chunkFWNDFI73_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 chunkFWNDFI73_js = require('./chunk-FWNDFI73.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 = chunkFWNDFI73_js.withExecutor("lint", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -1839,7 +1839,9 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1839
1839
|
const result2 = new _VirtualFileSystem(context, fs);
|
|
1840
1840
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1841
1841
|
await Promise.all(fs.storage.values().map(async (file) => {
|
|
1842
|
-
|
|
1842
|
+
if (file.path && file.code) {
|
|
1843
|
+
await result2.write(file.path, file.code);
|
|
1844
|
+
}
|
|
1843
1845
|
}));
|
|
1844
1846
|
}
|
|
1845
1847
|
}
|
|
@@ -1884,19 +1886,51 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1884
1886
|
* @returns A new virtual file system instance.
|
|
1885
1887
|
*/
|
|
1886
1888
|
static createSync(context) {
|
|
1889
|
+
context.debug("Starting virtual file system (VFS) initialization processes...");
|
|
1887
1890
|
if (!context.config.skipCache && existsSync(joinPaths$1(context.dataPath, "fs.bin"))) {
|
|
1888
1891
|
const buffer = readFileBufferSync(joinPaths$1(context.dataPath, "fs.bin"));
|
|
1889
1892
|
const message2 = new $.Message(buffer, false);
|
|
1890
1893
|
const fs = message2.getRoot(FileSystem);
|
|
1891
|
-
const
|
|
1894
|
+
const result2 = new _VirtualFileSystem(context, fs);
|
|
1892
1895
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1893
1896
|
fs.storage.values().map((file) => {
|
|
1894
|
-
|
|
1897
|
+
result2.writeSync(file.path, file.code);
|
|
1895
1898
|
});
|
|
1896
1899
|
}
|
|
1897
1900
|
}
|
|
1898
1901
|
const message = new $.Message();
|
|
1899
|
-
|
|
1902
|
+
const result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
|
|
1903
|
+
result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
|
|
1904
|
+
if (result.metadata) {
|
|
1905
|
+
result.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.metadata).length} previously stored metadata records...`);
|
|
1906
|
+
const entry = Object.entries(result.metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
|
|
1907
|
+
if (meta.properties) {
|
|
1908
|
+
const typeDefinition = {
|
|
1909
|
+
file: path
|
|
1910
|
+
};
|
|
1911
|
+
if (isSetString(meta.properties.name)) {
|
|
1912
|
+
typeDefinition.name = meta.properties.name;
|
|
1913
|
+
}
|
|
1914
|
+
if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
|
|
1915
|
+
typeDefinition.input ??= {};
|
|
1916
|
+
if (isSetString(meta.properties["input.file"])) {
|
|
1917
|
+
typeDefinition.input.file = meta.properties["input.file"];
|
|
1918
|
+
}
|
|
1919
|
+
if (isSetString(meta.properties["input.name"])) {
|
|
1920
|
+
typeDefinition.input.name = meta.properties["input.name"];
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
if (isSetString(meta.properties.output)) {
|
|
1924
|
+
typeDefinition.output = meta.properties.output;
|
|
1925
|
+
}
|
|
1926
|
+
return typeDefinition;
|
|
1927
|
+
}
|
|
1928
|
+
return null;
|
|
1929
|
+
}).filter(Boolean);
|
|
1930
|
+
result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
|
|
1931
|
+
context.entry = entry;
|
|
1932
|
+
}
|
|
1933
|
+
return result;
|
|
1900
1934
|
}
|
|
1901
1935
|
/**
|
|
1902
1936
|
* A map of file ids to their metadata.
|
|
@@ -2398,9 +2432,15 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2398
2432
|
async write(path, data = "", options = {}) {
|
|
2399
2433
|
const meta = options.meta ?? {};
|
|
2400
2434
|
const { relativeKey, adapter } = this.#getStorage(options.storage || path);
|
|
2435
|
+
this.#log(LogLevelLabel.TRACE, `Writing ${this.#normalizePath(relativeKey)} to ${adapter.name === "virtual" ? "the virtual file system" : adapter.name === "file-system" ? "the local file system" : adapter.name} (size: ${prettyBytes(new Blob(toArray(data)).size)})`);
|
|
2401
2436
|
let code = data;
|
|
2402
|
-
|
|
2403
|
-
|
|
2437
|
+
try {
|
|
2438
|
+
if (!options.skipFormat) {
|
|
2439
|
+
code = await format(this.#normalizePath(path), data);
|
|
2440
|
+
}
|
|
2441
|
+
} catch (err) {
|
|
2442
|
+
this.#log(LogLevelLabel.WARN, `Failed to format file ${this.#normalizePath(path)} before writing: ${err.message}`);
|
|
2443
|
+
code = data;
|
|
2404
2444
|
}
|
|
2405
2445
|
this.#log(LogLevelLabel.TRACE, `Writing ${this.#normalizePath(relativeKey)} to ${adapter.name === "virtual" ? "the virtual file system" : adapter.name === "file-system" ? "the local file system" : adapter.name} (size: ${prettyBytes(new Blob(toArray(code)).size)})`);
|
|
2406
2446
|
const id = meta.id || this.#normalizeId(relativeKey);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkFWNDFI73_js = require('./chunk-FWNDFI73.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 = chunkFWNDFI73_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 chunkFWNDFI73_js = require('./chunk-FWNDFI73.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 = chunkFWNDFI73_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 chunkFWNDFI73_js = require('./chunk-FWNDFI73.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 = chunkFWNDFI73_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 chunkJTE3DKCE_js = require('./chunk-JTE3DKCE.js');
|
|
5
|
+
var chunkIBC7GOGC_js = require('./chunk-IBC7GOGC.js');
|
|
6
|
+
var chunkRDVMU2LL_js = require('./chunk-RDVMU2LL.js');
|
|
7
|
+
var chunkZQ4DS5UO_js = require('./chunk-ZQ4DS5UO.js');
|
|
8
|
+
var chunkYD6IO77Y_js = require('./chunk-YD6IO77Y.js');
|
|
9
|
+
require('./chunk-FWNDFI73.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 chunkJTE3DKCE_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkIBC7GOGC_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkRDVMU2LL_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkZQ4DS5UO_js.executor_default; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "docs", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkYD6IO77Y_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-THJFDLTT.mjs';
|
|
3
|
+
export { executor_default as prepare } from './chunk-MAUL7XPQ.mjs';
|
|
4
|
+
export { executor_default as build } from './chunk-B2KGTXN3.mjs';
|
|
5
|
+
export { executor_default as clean } from './chunk-V3L4CNNL.mjs';
|
|
6
|
+
export { executor_default as docs } from './chunk-GJINPPMS.mjs';
|
|
7
|
+
import './chunk-KEA7QWGK.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 chunkJTE3DKCE_js = require('./chunk-JTE3DKCE.js');
|
|
6
|
+
var chunkIBC7GOGC_js = require('./chunk-IBC7GOGC.js');
|
|
7
|
+
var chunkRDVMU2LL_js = require('./chunk-RDVMU2LL.js');
|
|
8
|
+
var chunkZQ4DS5UO_js = require('./chunk-ZQ4DS5UO.js');
|
|
9
|
+
var chunkYD6IO77Y_js = require('./chunk-YD6IO77Y.js');
|
|
10
10
|
require('./chunk-N2YKXZ5R.js');
|
|
11
11
|
var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
|
|
12
|
-
require('./chunk-
|
|
12
|
+
require('./chunk-FWNDFI73.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 chunkJTE3DKCE_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkIBC7GOGC_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkRDVMU2LL_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkZQ4DS5UO_js.executor_default; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "docs", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkYD6IO77Y_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-THJFDLTT.mjs';
|
|
4
|
+
export { executor_default as prepare } from './chunk-MAUL7XPQ.mjs';
|
|
5
|
+
export { executor_default as build } from './chunk-B2KGTXN3.mjs';
|
|
6
|
+
export { executor_default as clean } from './chunk-V3L4CNNL.mjs';
|
|
7
|
+
export { executor_default as docs } from './chunk-GJINPPMS.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-KEA7QWGK.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 chunkFWNDFI73_js = require('../../chunk-FWNDFI73.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 chunkFWNDFI73_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 chunkRDVMU2LL_js = require('../../../chunk-RDVMU2LL.js');
|
|
6
|
+
require('../../../chunk-FWNDFI73.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 chunkRDVMU2LL_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkRDVMU2LL_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-B2KGTXN3.mjs';
|
|
2
|
+
import '../../../chunk-KEA7QWGK.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 chunkZQ4DS5UO_js = require('../../../chunk-ZQ4DS5UO.js');
|
|
6
|
+
require('../../../chunk-FWNDFI73.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 chunkZQ4DS5UO_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkZQ4DS5UO_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-V3L4CNNL.mjs';
|
|
2
|
+
import '../../../chunk-KEA7QWGK.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 chunkYD6IO77Y_js = require('../../../chunk-YD6IO77Y.js');
|
|
6
|
+
require('../../../chunk-FWNDFI73.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 chunkYD6IO77Y_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkYD6IO77Y_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-GJINPPMS.mjs';
|
|
2
|
+
import '../../../chunk-KEA7QWGK.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 chunkJTE3DKCE_js = require('../../../chunk-JTE3DKCE.js');
|
|
6
|
+
require('../../../chunk-FWNDFI73.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 chunkJTE3DKCE_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkJTE3DKCE_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-THJFDLTT.mjs';
|
|
2
|
+
import '../../../chunk-KEA7QWGK.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 chunkIBC7GOGC_js = require('../../../chunk-IBC7GOGC.js');
|
|
6
|
+
require('../../../chunk-FWNDFI73.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 chunkIBC7GOGC_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkIBC7GOGC_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-MAUL7XPQ.mjs';
|
|
2
|
+
import '../../../chunk-KEA7QWGK.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.80",
|
|
4
4
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -182,12 +182,12 @@
|
|
|
182
182
|
"typings": "dist/index.d.ts",
|
|
183
183
|
"dependencies": {
|
|
184
184
|
"@nx/devkit": "^22.3.3",
|
|
185
|
-
"@storm-software/build-tools": "^0.158.
|
|
185
|
+
"@storm-software/build-tools": "^0.158.77",
|
|
186
186
|
"@storm-software/config": "^1.135.0",
|
|
187
|
-
"@storm-software/config-tools": "^1.188.
|
|
188
|
-
"@storm-software/esbuild": "^0.53.
|
|
189
|
-
"@storm-software/unbuild": "^0.57.
|
|
190
|
-
"@storm-software/workspace-tools": "^1.294.
|
|
187
|
+
"@storm-software/config-tools": "^1.188.77",
|
|
188
|
+
"@storm-software/esbuild": "^0.53.77",
|
|
189
|
+
"@storm-software/unbuild": "^0.57.77",
|
|
190
|
+
"@storm-software/workspace-tools": "^1.294.23",
|
|
191
191
|
"@stryke/fs": "^0.33.29",
|
|
192
192
|
"@stryke/hash": "^0.12.35",
|
|
193
193
|
"@stryke/path": "^0.24.2",
|
|
@@ -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.24"
|
|
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": "1f9ad6540f6882c3f88e8994100b2faed1bd2e78"
|
|
214
214
|
}
|