@powerlines/nx 0.11.78 → 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 +12 -0
- package/dist/{chunk-65KVGVH6.mjs → chunk-B2KGTXN3.mjs} +1 -1
- package/dist/{chunk-H4R77WFR.js → chunk-FWNDFI73.js} +104 -28
- package/dist/{chunk-D6IQMPHA.mjs → chunk-GJINPPMS.mjs} +1 -1
- package/dist/{chunk-QGA7AZWV.js → chunk-IBC7GOGC.js} +2 -2
- package/dist/{chunk-CH4MA6RI.js → chunk-JTE3DKCE.js} +2 -2
- package/dist/{chunk-BIKQYBVC.mjs → chunk-KEA7QWGK.mjs} +104 -28
- package/dist/{chunk-5XPOHI5M.mjs → chunk-MAUL7XPQ.mjs} +1 -1
- package/dist/{chunk-6PJ44DJN.js → chunk-RDVMU2LL.js} +2 -2
- package/dist/{chunk-OA2OOKLN.mjs → chunk-THJFDLTT.mjs} +1 -1
- package/dist/{chunk-IKU63MDC.mjs → chunk-V3L4CNNL.mjs} +1 -1
- package/dist/{chunk-4EXM3LNW.js → chunk-YD6IO77Y.js} +2 -2
- package/dist/{chunk-VOXGF3JS.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 +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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
|
+
|
|
11
|
+
## [0.11.78](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.78) (01/14/2026)
|
|
12
|
+
|
|
13
|
+
### Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated **powerlines** to **v0.37.22**
|
|
16
|
+
|
|
5
17
|
## [0.11.77](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.77) (01/14/2026)
|
|
6
18
|
|
|
7
19
|
### 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.
|
|
@@ -1934,7 +1968,18 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1934
1968
|
return new Proxy(this.#metadata, {
|
|
1935
1969
|
get: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
1936
1970
|
return target[this.#normalizeId(prop)];
|
|
1937
|
-
}, "get")
|
|
1971
|
+
}, "get"),
|
|
1972
|
+
set: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop, value) => {
|
|
1973
|
+
target[this.#normalizeId(prop)] = value;
|
|
1974
|
+
return true;
|
|
1975
|
+
}, "set"),
|
|
1976
|
+
deleteProperty: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
1977
|
+
delete target[this.#normalizeId(prop)];
|
|
1978
|
+
return true;
|
|
1979
|
+
}, "deleteProperty"),
|
|
1980
|
+
has: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
1981
|
+
return this.#normalizeId(prop) in target;
|
|
1982
|
+
}, "has")
|
|
1938
1983
|
});
|
|
1939
1984
|
}
|
|
1940
1985
|
/**
|
|
@@ -1944,7 +1989,18 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1944
1989
|
return new Proxy(this.#paths, {
|
|
1945
1990
|
get: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
1946
1991
|
return target[this.#normalizePath(prop)];
|
|
1947
|
-
}, "get")
|
|
1992
|
+
}, "get"),
|
|
1993
|
+
set: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop, value) => {
|
|
1994
|
+
target[this.#normalizePath(prop)] = value;
|
|
1995
|
+
return true;
|
|
1996
|
+
}, "set"),
|
|
1997
|
+
deleteProperty: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
1998
|
+
delete target[this.#normalizePath(prop)];
|
|
1999
|
+
return true;
|
|
2000
|
+
}, "deleteProperty"),
|
|
2001
|
+
has: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
2002
|
+
return this.#normalizePath(prop) in target;
|
|
2003
|
+
}, "has")
|
|
1948
2004
|
});
|
|
1949
2005
|
}
|
|
1950
2006
|
/**
|
|
@@ -1954,7 +2010,18 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1954
2010
|
return new Proxy(this.#paths, {
|
|
1955
2011
|
get: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
1956
2012
|
return target[this.#normalizeId(prop)];
|
|
1957
|
-
}, "get")
|
|
2013
|
+
}, "get"),
|
|
2014
|
+
set: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop, value) => {
|
|
2015
|
+
target[this.#normalizeId(prop)] = value;
|
|
2016
|
+
return true;
|
|
2017
|
+
}, "set"),
|
|
2018
|
+
deleteProperty: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
2019
|
+
delete target[this.#normalizeId(prop)];
|
|
2020
|
+
return true;
|
|
2021
|
+
}, "deleteProperty"),
|
|
2022
|
+
has: /* @__PURE__ */ chunkSHUYVCID_js.__name((target, prop) => {
|
|
2023
|
+
return this.#normalizeId(prop) in target;
|
|
2024
|
+
}, "has")
|
|
1958
2025
|
});
|
|
1959
2026
|
}
|
|
1960
2027
|
/**
|
|
@@ -2394,15 +2461,22 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2394
2461
|
async write(path, data = "", options = {}) {
|
|
2395
2462
|
const meta = options.meta ?? {};
|
|
2396
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)})`);
|
|
2397
2465
|
let code = data;
|
|
2398
|
-
|
|
2399
|
-
|
|
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;
|
|
2400
2473
|
}
|
|
2401
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)})`);
|
|
2402
2475
|
const id = meta.id || this.#normalizeId(relativeKey);
|
|
2403
2476
|
this.#metadata[id] = {
|
|
2404
2477
|
type: "normal",
|
|
2405
2478
|
timestamp: Date.now(),
|
|
2479
|
+
...this.#metadata[id] ?? {},
|
|
2406
2480
|
...meta
|
|
2407
2481
|
};
|
|
2408
2482
|
this.#paths[id] = this.#normalizePath(relativeKey);
|
|
@@ -2424,6 +2498,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2424
2498
|
this.#metadata[id] = {
|
|
2425
2499
|
type: "normal",
|
|
2426
2500
|
timestamp: Date.now(),
|
|
2501
|
+
...this.#metadata[id] ?? {},
|
|
2427
2502
|
...meta
|
|
2428
2503
|
};
|
|
2429
2504
|
this.#paths[id] = this.#normalizePath(relativeKey);
|
|
@@ -2648,22 +2723,21 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2648
2723
|
await this.remove(joinPaths.joinPaths(this.#context.dataPath, "fs.bin"));
|
|
2649
2724
|
const message = new $__namespace.Message();
|
|
2650
2725
|
const fs = message.initRoot(FileSystem);
|
|
2651
|
-
const
|
|
2652
|
-
|
|
2653
|
-
await Promise.all(paths.map(async (path, index) => {
|
|
2726
|
+
const storage = fs._initStorage(Object.keys(this.#paths).length);
|
|
2727
|
+
await Promise.all(Object.values(this.#paths).map(async (path, index) => {
|
|
2654
2728
|
const code = await this.read(path);
|
|
2655
2729
|
const fd = storage.get(index);
|
|
2656
2730
|
fd.path = path;
|
|
2657
2731
|
fd.code = code || "";
|
|
2658
2732
|
}));
|
|
2659
|
-
const ids = fs._initIds(Object.keys(this
|
|
2660
|
-
Object.entries(this
|
|
2733
|
+
const ids = fs._initIds(Object.keys(this.#ids).length);
|
|
2734
|
+
Object.entries(this.#ids).filter(([, path]) => path).forEach(([id, path], index) => {
|
|
2661
2735
|
const fileId = ids.get(index);
|
|
2662
2736
|
fileId.id = id;
|
|
2663
2737
|
fileId.path = path;
|
|
2664
2738
|
});
|
|
2665
|
-
const metadata = fs._initMetadata(Object.keys(this
|
|
2666
|
-
Object.entries(this
|
|
2739
|
+
const metadata = fs._initMetadata(Object.keys(this.#metadata).length);
|
|
2740
|
+
Object.entries(this.#metadata).filter(([, value]) => value).forEach(([id, value], index) => {
|
|
2667
2741
|
const fileMetadata = metadata.get(index);
|
|
2668
2742
|
fileMetadata.id = id;
|
|
2669
2743
|
fileMetadata.type = value.type;
|
|
@@ -3332,19 +3406,20 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3332
3406
|
output: options.output
|
|
3333
3407
|
});
|
|
3334
3408
|
}
|
|
3335
|
-
return this.emit(code, entryPath, defu6__default.default(
|
|
3336
|
-
"name"
|
|
3337
|
-
]), {
|
|
3409
|
+
return this.emit(code, entryPath, defu6__default.default({
|
|
3338
3410
|
meta: {
|
|
3339
3411
|
type: "entry",
|
|
3340
3412
|
properties: {
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
"input.
|
|
3413
|
+
file: entryPath,
|
|
3414
|
+
name: options?.name,
|
|
3415
|
+
output: options?.output,
|
|
3416
|
+
"input.file": options?.input?.file,
|
|
3417
|
+
"input.name": options?.input?.name
|
|
3345
3418
|
}
|
|
3346
3419
|
}
|
|
3347
|
-
}
|
|
3420
|
+
}, omit.omit(options, [
|
|
3421
|
+
"name"
|
|
3422
|
+
])));
|
|
3348
3423
|
}
|
|
3349
3424
|
/**
|
|
3350
3425
|
* Synchronously resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
@@ -3363,19 +3438,20 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3363
3438
|
output: options?.output
|
|
3364
3439
|
});
|
|
3365
3440
|
}
|
|
3366
|
-
return this.emitSync(code, entryPath, defu6__default.default(
|
|
3367
|
-
"name"
|
|
3368
|
-
]), {
|
|
3441
|
+
return this.emitSync(code, entryPath, defu6__default.default({
|
|
3369
3442
|
meta: {
|
|
3370
3443
|
type: "entry",
|
|
3371
3444
|
properties: {
|
|
3445
|
+
file: entryPath,
|
|
3372
3446
|
name: options?.name,
|
|
3373
3447
|
output: options?.output,
|
|
3374
3448
|
"input.file": options?.input?.file,
|
|
3375
3449
|
"input.name": options?.input?.name
|
|
3376
3450
|
}
|
|
3377
3451
|
}
|
|
3378
|
-
}
|
|
3452
|
+
}, omit.omit(options, [
|
|
3453
|
+
"name"
|
|
3454
|
+
])));
|
|
3379
3455
|
}
|
|
3380
3456
|
/**
|
|
3381
3457
|
* Resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
@@ -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.
|
|
@@ -1905,7 +1939,18 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1905
1939
|
return new Proxy(this.#metadata, {
|
|
1906
1940
|
get: /* @__PURE__ */ __name((target, prop) => {
|
|
1907
1941
|
return target[this.#normalizeId(prop)];
|
|
1908
|
-
}, "get")
|
|
1942
|
+
}, "get"),
|
|
1943
|
+
set: /* @__PURE__ */ __name((target, prop, value) => {
|
|
1944
|
+
target[this.#normalizeId(prop)] = value;
|
|
1945
|
+
return true;
|
|
1946
|
+
}, "set"),
|
|
1947
|
+
deleteProperty: /* @__PURE__ */ __name((target, prop) => {
|
|
1948
|
+
delete target[this.#normalizeId(prop)];
|
|
1949
|
+
return true;
|
|
1950
|
+
}, "deleteProperty"),
|
|
1951
|
+
has: /* @__PURE__ */ __name((target, prop) => {
|
|
1952
|
+
return this.#normalizeId(prop) in target;
|
|
1953
|
+
}, "has")
|
|
1909
1954
|
});
|
|
1910
1955
|
}
|
|
1911
1956
|
/**
|
|
@@ -1915,7 +1960,18 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1915
1960
|
return new Proxy(this.#paths, {
|
|
1916
1961
|
get: /* @__PURE__ */ __name((target, prop) => {
|
|
1917
1962
|
return target[this.#normalizePath(prop)];
|
|
1918
|
-
}, "get")
|
|
1963
|
+
}, "get"),
|
|
1964
|
+
set: /* @__PURE__ */ __name((target, prop, value) => {
|
|
1965
|
+
target[this.#normalizePath(prop)] = value;
|
|
1966
|
+
return true;
|
|
1967
|
+
}, "set"),
|
|
1968
|
+
deleteProperty: /* @__PURE__ */ __name((target, prop) => {
|
|
1969
|
+
delete target[this.#normalizePath(prop)];
|
|
1970
|
+
return true;
|
|
1971
|
+
}, "deleteProperty"),
|
|
1972
|
+
has: /* @__PURE__ */ __name((target, prop) => {
|
|
1973
|
+
return this.#normalizePath(prop) in target;
|
|
1974
|
+
}, "has")
|
|
1919
1975
|
});
|
|
1920
1976
|
}
|
|
1921
1977
|
/**
|
|
@@ -1925,7 +1981,18 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1925
1981
|
return new Proxy(this.#paths, {
|
|
1926
1982
|
get: /* @__PURE__ */ __name((target, prop) => {
|
|
1927
1983
|
return target[this.#normalizeId(prop)];
|
|
1928
|
-
}, "get")
|
|
1984
|
+
}, "get"),
|
|
1985
|
+
set: /* @__PURE__ */ __name((target, prop, value) => {
|
|
1986
|
+
target[this.#normalizeId(prop)] = value;
|
|
1987
|
+
return true;
|
|
1988
|
+
}, "set"),
|
|
1989
|
+
deleteProperty: /* @__PURE__ */ __name((target, prop) => {
|
|
1990
|
+
delete target[this.#normalizeId(prop)];
|
|
1991
|
+
return true;
|
|
1992
|
+
}, "deleteProperty"),
|
|
1993
|
+
has: /* @__PURE__ */ __name((target, prop) => {
|
|
1994
|
+
return this.#normalizeId(prop) in target;
|
|
1995
|
+
}, "has")
|
|
1929
1996
|
});
|
|
1930
1997
|
}
|
|
1931
1998
|
/**
|
|
@@ -2365,15 +2432,22 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2365
2432
|
async write(path, data = "", options = {}) {
|
|
2366
2433
|
const meta = options.meta ?? {};
|
|
2367
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)})`);
|
|
2368
2436
|
let code = data;
|
|
2369
|
-
|
|
2370
|
-
|
|
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;
|
|
2371
2444
|
}
|
|
2372
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)})`);
|
|
2373
2446
|
const id = meta.id || this.#normalizeId(relativeKey);
|
|
2374
2447
|
this.#metadata[id] = {
|
|
2375
2448
|
type: "normal",
|
|
2376
2449
|
timestamp: Date.now(),
|
|
2450
|
+
...this.#metadata[id] ?? {},
|
|
2377
2451
|
...meta
|
|
2378
2452
|
};
|
|
2379
2453
|
this.#paths[id] = this.#normalizePath(relativeKey);
|
|
@@ -2395,6 +2469,7 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2395
2469
|
this.#metadata[id] = {
|
|
2396
2470
|
type: "normal",
|
|
2397
2471
|
timestamp: Date.now(),
|
|
2472
|
+
...this.#metadata[id] ?? {},
|
|
2398
2473
|
...meta
|
|
2399
2474
|
};
|
|
2400
2475
|
this.#paths[id] = this.#normalizePath(relativeKey);
|
|
@@ -2619,22 +2694,21 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
2619
2694
|
await this.remove(joinPaths$1(this.#context.dataPath, "fs.bin"));
|
|
2620
2695
|
const message = new $.Message();
|
|
2621
2696
|
const fs = message.initRoot(FileSystem);
|
|
2622
|
-
const
|
|
2623
|
-
|
|
2624
|
-
await Promise.all(paths.map(async (path, index) => {
|
|
2697
|
+
const storage = fs._initStorage(Object.keys(this.#paths).length);
|
|
2698
|
+
await Promise.all(Object.values(this.#paths).map(async (path, index) => {
|
|
2625
2699
|
const code = await this.read(path);
|
|
2626
2700
|
const fd = storage.get(index);
|
|
2627
2701
|
fd.path = path;
|
|
2628
2702
|
fd.code = code || "";
|
|
2629
2703
|
}));
|
|
2630
|
-
const ids = fs._initIds(Object.keys(this
|
|
2631
|
-
Object.entries(this
|
|
2704
|
+
const ids = fs._initIds(Object.keys(this.#ids).length);
|
|
2705
|
+
Object.entries(this.#ids).filter(([, path]) => path).forEach(([id, path], index) => {
|
|
2632
2706
|
const fileId = ids.get(index);
|
|
2633
2707
|
fileId.id = id;
|
|
2634
2708
|
fileId.path = path;
|
|
2635
2709
|
});
|
|
2636
|
-
const metadata = fs._initMetadata(Object.keys(this
|
|
2637
|
-
Object.entries(this
|
|
2710
|
+
const metadata = fs._initMetadata(Object.keys(this.#metadata).length);
|
|
2711
|
+
Object.entries(this.#metadata).filter(([, value]) => value).forEach(([id, value], index) => {
|
|
2638
2712
|
const fileMetadata = metadata.get(index);
|
|
2639
2713
|
fileMetadata.id = id;
|
|
2640
2714
|
fileMetadata.type = value.type;
|
|
@@ -3303,19 +3377,20 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3303
3377
|
output: options.output
|
|
3304
3378
|
});
|
|
3305
3379
|
}
|
|
3306
|
-
return this.emit(code, entryPath, defu6(
|
|
3307
|
-
"name"
|
|
3308
|
-
]), {
|
|
3380
|
+
return this.emit(code, entryPath, defu6({
|
|
3309
3381
|
meta: {
|
|
3310
3382
|
type: "entry",
|
|
3311
3383
|
properties: {
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
"input.
|
|
3384
|
+
file: entryPath,
|
|
3385
|
+
name: options?.name,
|
|
3386
|
+
output: options?.output,
|
|
3387
|
+
"input.file": options?.input?.file,
|
|
3388
|
+
"input.name": options?.input?.name
|
|
3316
3389
|
}
|
|
3317
3390
|
}
|
|
3318
|
-
}
|
|
3391
|
+
}, omit(options, [
|
|
3392
|
+
"name"
|
|
3393
|
+
])));
|
|
3319
3394
|
}
|
|
3320
3395
|
/**
|
|
3321
3396
|
* Synchronously resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
@@ -3334,19 +3409,20 @@ var PowerlinesContext = class _PowerlinesContext {
|
|
|
3334
3409
|
output: options?.output
|
|
3335
3410
|
});
|
|
3336
3411
|
}
|
|
3337
|
-
return this.emitSync(code, entryPath, defu6(
|
|
3338
|
-
"name"
|
|
3339
|
-
]), {
|
|
3412
|
+
return this.emitSync(code, entryPath, defu6({
|
|
3340
3413
|
meta: {
|
|
3341
3414
|
type: "entry",
|
|
3342
3415
|
properties: {
|
|
3416
|
+
file: entryPath,
|
|
3343
3417
|
name: options?.name,
|
|
3344
3418
|
output: options?.output,
|
|
3345
3419
|
"input.file": options?.input?.file,
|
|
3346
3420
|
"input.name": options?.input?.name
|
|
3347
3421
|
}
|
|
3348
3422
|
}
|
|
3349
|
-
}
|
|
3423
|
+
}, omit(options, [
|
|
3424
|
+
"name"
|
|
3425
|
+
])));
|
|
3350
3426
|
}
|
|
3351
3427
|
/**
|
|
3352
3428
|
* Resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
@@ -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.
|
|
186
|
-
"@storm-software/config": "^1.
|
|
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.
|
|
185
|
+
"@storm-software/build-tools": "^0.158.77",
|
|
186
|
+
"@storm-software/config": "^1.135.0",
|
|
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
|
}
|