@powerlines/nx 0.11.81 → 0.11.83

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/{chunk-EBLS2NI7.js → chunk-5XS6DFXA.js} +2 -2
  3. package/dist/{chunk-RLQ2UU4B.mjs → chunk-6ZWAQLTV.mjs} +1 -1
  4. package/dist/{chunk-6C2WXF2T.js → chunk-FJQUX7WA.js} +2 -2
  5. package/dist/{chunk-PXLCGFRS.js → chunk-IVQLGWB5.js} +111 -69
  6. package/dist/{chunk-2O3TU7YO.js → chunk-JAMDMEFP.js} +2 -2
  7. package/dist/{chunk-ZCZL3LTU.js → chunk-KARY6B6G.js} +2 -2
  8. package/dist/{chunk-VZUAIBCN.js → chunk-LTOM4NHQ.js} +2 -2
  9. package/dist/{chunk-W445DTXC.mjs → chunk-M75FFP6R.mjs} +1 -1
  10. package/dist/{chunk-4EOJDVGM.mjs → chunk-R2BX2ZOD.mjs} +1 -1
  11. package/dist/{chunk-ZWQAXJKA.mjs → chunk-YXSRU7TG.mjs} +1 -1
  12. package/dist/{chunk-E6Z2SS7Z.mjs → chunk-ZGZRJ27Q.mjs} +1 -1
  13. package/dist/{chunk-YHFGZ6YM.mjs → chunk-ZKYFH6ZJ.mjs} +111 -69
  14. package/dist/executors.js +13 -13
  15. package/dist/executors.mjs +6 -6
  16. package/dist/index.js +13 -13
  17. package/dist/index.mjs +6 -6
  18. package/dist/src/base/base-executor.js +2 -2
  19. package/dist/src/base/base-executor.mjs +1 -1
  20. package/dist/src/executors/build/executor.js +4 -4
  21. package/dist/src/executors/build/executor.mjs +2 -2
  22. package/dist/src/executors/clean/executor.js +4 -4
  23. package/dist/src/executors/clean/executor.mjs +2 -2
  24. package/dist/src/executors/docs/executor.js +4 -4
  25. package/dist/src/executors/docs/executor.mjs +2 -2
  26. package/dist/src/executors/lint/executor.js +4 -4
  27. package/dist/src/executors/lint/executor.mjs +2 -2
  28. package/dist/src/executors/prepare/executor.js +4 -4
  29. package/dist/src/executors/prepare/executor.mjs +2 -2
  30. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.11.82](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.82) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.37.26**
10
+
11
+ ## [0.11.81](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.81) (01/14/2026)
12
+
13
+ ### Updated Dependencies
14
+
15
+ - Updated **powerlines** to **v0.37.25**
16
+
5
17
  ## [0.11.80](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.80) (01/14/2026)
6
18
 
7
19
  ### Updated Dependencies
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunkIVQLGWB5_js = require('./chunk-IVQLGWB5.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 = chunkPXLCGFRS_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkIVQLGWB5_js.withExecutor("prepare", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-YHFGZ6YM.mjs';
1
+ import { withExecutor } from './chunk-ZKYFH6ZJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunkIVQLGWB5_js = require('./chunk-IVQLGWB5.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 = chunkPXLCGFRS_js.withExecutor("docs", executorFn);
14
+ var executor = chunkIVQLGWB5_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1861,53 +1861,73 @@ var VirtualFileSystem = class _VirtualFileSystem {
1861
1861
  */
1862
1862
  static async create(context) {
1863
1863
  context.debug("Starting virtual file system (VFS) initialization processes...");
1864
+ let result;
1864
1865
  if (!context.config.skipCache && exists.existsSync(joinPaths.joinPaths(context.dataPath, "fs.bin"))) {
1865
1866
  const buffer$1 = await buffer.readFileBuffer(joinPaths.joinPaths(context.dataPath, "fs.bin"));
1866
- const message2 = new $__namespace.Message(buffer$1, false);
1867
- const fs = message2.getRoot(FileSystem);
1868
- const result2 = new _VirtualFileSystem(context, fs);
1867
+ const message = new $__namespace.Message(buffer$1, false);
1868
+ const fs = message.getRoot(FileSystem);
1869
+ result = new _VirtualFileSystem(context, fs);
1869
1870
  if (fs._hasStorage() && fs.storage.length > 0) {
1870
1871
  await Promise.all(fs.storage.values().map(async (file) => {
1871
1872
  if (file.path && file.code) {
1872
- await result2.write(file.path, file.code);
1873
+ let id;
1874
+ if (fs._hasIds()) {
1875
+ id = fs.ids.find((fileId) => fileId.path === file.path);
1876
+ }
1877
+ let metadata;
1878
+ if (fs._hasMetadata()) {
1879
+ metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
1880
+ }
1881
+ await result.write(file.path, file.code, {
1882
+ meta: {
1883
+ id: id?.id || metadata?.id,
1884
+ type: metadata?.type,
1885
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1886
+ ret[kvp.key] = kvp.value;
1887
+ return ret;
1888
+ }, {}) : void 0,
1889
+ timestamp: metadata?.timestamp
1890
+ }
1891
+ });
1873
1892
  }
1874
1893
  }));
1875
1894
  }
1876
- }
1877
- const message = new $__namespace.Message();
1878
- const result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1879
- result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1880
- if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1881
- result.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1882
- const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1883
- if (meta.properties) {
1884
- const typeDefinition = {
1885
- file: path
1886
- };
1887
- if (isSetString.isSetString(meta.properties.name)) {
1888
- typeDefinition.name = meta.properties.name;
1889
- }
1890
- if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
1891
- typeDefinition.input ??= {};
1892
- if (isSetString.isSetString(meta.properties["input.file"])) {
1893
- typeDefinition.input.file = meta.properties["input.file"];
1895
+ if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1896
+ result.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1897
+ const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1898
+ if (meta.properties) {
1899
+ const typeDefinition = {
1900
+ file: path
1901
+ };
1902
+ if (isSetString.isSetString(meta.properties.name)) {
1903
+ typeDefinition.name = meta.properties.name;
1894
1904
  }
1895
- if (isSetString.isSetString(meta.properties["input.name"])) {
1896
- typeDefinition.input.name = meta.properties["input.name"];
1905
+ if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
1906
+ typeDefinition.input ??= {};
1907
+ if (isSetString.isSetString(meta.properties["input.file"])) {
1908
+ typeDefinition.input.file = meta.properties["input.file"];
1909
+ }
1910
+ if (isSetString.isSetString(meta.properties["input.name"])) {
1911
+ typeDefinition.input.name = meta.properties["input.name"];
1912
+ }
1897
1913
  }
1914
+ if (isSetString.isSetString(meta.properties.output)) {
1915
+ typeDefinition.output = meta.properties.output;
1916
+ }
1917
+ return typeDefinition;
1898
1918
  }
1899
- if (isSetString.isSetString(meta.properties.output)) {
1900
- typeDefinition.output = meta.properties.output;
1901
- }
1902
- return typeDefinition;
1903
- }
1904
- return null;
1905
- }).filter(Boolean);
1906
- result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1907
- context.entry = entry;
1919
+ return null;
1920
+ }).filter(Boolean);
1921
+ result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1922
+ context.entry = entry;
1923
+ } else {
1924
+ result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1925
+ }
1908
1926
  } else {
1909
- result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1927
+ const message = new $__namespace.Message();
1928
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1910
1929
  }
1930
+ result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1911
1931
  return result;
1912
1932
  }
1913
1933
  /**
@@ -1918,51 +1938,73 @@ var VirtualFileSystem = class _VirtualFileSystem {
1918
1938
  */
1919
1939
  static createSync(context) {
1920
1940
  context.debug("Starting virtual file system (VFS) initialization processes...");
1941
+ let result;
1921
1942
  if (!context.config.skipCache && exists.existsSync(joinPaths.joinPaths(context.dataPath, "fs.bin"))) {
1922
1943
  const buffer$1 = buffer.readFileBufferSync(joinPaths.joinPaths(context.dataPath, "fs.bin"));
1923
- const message2 = new $__namespace.Message(buffer$1, false);
1924
- const fs = message2.getRoot(FileSystem);
1925
- const result2 = new _VirtualFileSystem(context, fs);
1944
+ const message = new $__namespace.Message(buffer$1, false);
1945
+ const fs = message.getRoot(FileSystem);
1946
+ result = new _VirtualFileSystem(context, fs);
1926
1947
  if (fs._hasStorage() && fs.storage.length > 0) {
1927
- fs.storage.values().map((file) => {
1928
- result2.writeSync(file.path, file.code);
1948
+ fs.storage.values().forEach((file) => {
1949
+ if (file.path && file.code) {
1950
+ let id;
1951
+ if (fs._hasIds()) {
1952
+ id = fs.ids.find((fileId) => fileId.path === file.path);
1953
+ }
1954
+ let metadata;
1955
+ if (fs._hasMetadata()) {
1956
+ metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
1957
+ }
1958
+ result.writeSync(file.path, file.code, {
1959
+ meta: {
1960
+ id: id?.id || metadata?.id,
1961
+ type: metadata?.type,
1962
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1963
+ ret[kvp.key] = kvp.value;
1964
+ return ret;
1965
+ }, {}) : void 0,
1966
+ timestamp: metadata?.timestamp
1967
+ }
1968
+ });
1969
+ }
1929
1970
  });
1930
1971
  }
1931
- }
1932
- const message = new $__namespace.Message();
1933
- const result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1934
- result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1935
- if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1936
- result.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1937
- const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1938
- if (meta.properties) {
1939
- const typeDefinition = {
1940
- file: path
1941
- };
1942
- if (isSetString.isSetString(meta.properties.name)) {
1943
- typeDefinition.name = meta.properties.name;
1944
- }
1945
- if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
1946
- typeDefinition.input ??= {};
1947
- if (isSetString.isSetString(meta.properties["input.file"])) {
1948
- typeDefinition.input.file = meta.properties["input.file"];
1972
+ if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1973
+ result.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1974
+ const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1975
+ if (meta.properties) {
1976
+ const typeDefinition = {
1977
+ file: path
1978
+ };
1979
+ if (isSetString.isSetString(meta.properties.name)) {
1980
+ typeDefinition.name = meta.properties.name;
1949
1981
  }
1950
- if (isSetString.isSetString(meta.properties["input.name"])) {
1951
- typeDefinition.input.name = meta.properties["input.name"];
1982
+ if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
1983
+ typeDefinition.input ??= {};
1984
+ if (isSetString.isSetString(meta.properties["input.file"])) {
1985
+ typeDefinition.input.file = meta.properties["input.file"];
1986
+ }
1987
+ if (isSetString.isSetString(meta.properties["input.name"])) {
1988
+ typeDefinition.input.name = meta.properties["input.name"];
1989
+ }
1952
1990
  }
1991
+ if (isSetString.isSetString(meta.properties.output)) {
1992
+ typeDefinition.output = meta.properties.output;
1993
+ }
1994
+ return typeDefinition;
1953
1995
  }
1954
- if (isSetString.isSetString(meta.properties.output)) {
1955
- typeDefinition.output = meta.properties.output;
1956
- }
1957
- return typeDefinition;
1958
- }
1959
- return null;
1960
- }).filter(Boolean);
1961
- result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1962
- context.entry = entry;
1996
+ return null;
1997
+ }).filter(Boolean);
1998
+ result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1999
+ context.entry = entry;
2000
+ } else {
2001
+ result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
2002
+ }
1963
2003
  } else {
1964
- result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
2004
+ const message = new $__namespace.Message();
2005
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1965
2006
  }
2007
+ result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1966
2008
  return result;
1967
2009
  }
1968
2010
  /**
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunkIVQLGWB5_js = require('./chunk-IVQLGWB5.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 = chunkPXLCGFRS_js.withExecutor("clean", executorFn);
14
+ var executor = chunkIVQLGWB5_js.withExecutor("clean", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunkIVQLGWB5_js = require('./chunk-IVQLGWB5.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 = chunkPXLCGFRS_js.withExecutor("lint", executorFn);
14
+ var executor = chunkIVQLGWB5_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunkIVQLGWB5_js = require('./chunk-IVQLGWB5.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 = chunkPXLCGFRS_js.withExecutor("build", executorFn);
22
+ var executor = chunkIVQLGWB5_js.withExecutor("build", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-YHFGZ6YM.mjs';
1
+ import { withExecutor } from './chunk-ZKYFH6ZJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-YHFGZ6YM.mjs';
1
+ import { withExecutor } from './chunk-ZKYFH6ZJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/docs/executor.ts
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-YHFGZ6YM.mjs';
1
+ import { withExecutor } from './chunk-ZKYFH6ZJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-YHFGZ6YM.mjs';
1
+ import { withExecutor } from './chunk-ZKYFH6ZJ.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -1832,53 +1832,73 @@ var VirtualFileSystem = class _VirtualFileSystem {
1832
1832
  */
1833
1833
  static async create(context) {
1834
1834
  context.debug("Starting virtual file system (VFS) initialization processes...");
1835
+ let result;
1835
1836
  if (!context.config.skipCache && existsSync(joinPaths$1(context.dataPath, "fs.bin"))) {
1836
1837
  const buffer = await readFileBuffer(joinPaths$1(context.dataPath, "fs.bin"));
1837
- const message2 = new $.Message(buffer, false);
1838
- const fs = message2.getRoot(FileSystem);
1839
- const result2 = new _VirtualFileSystem(context, fs);
1838
+ const message = new $.Message(buffer, false);
1839
+ const fs = message.getRoot(FileSystem);
1840
+ result = new _VirtualFileSystem(context, fs);
1840
1841
  if (fs._hasStorage() && fs.storage.length > 0) {
1841
1842
  await Promise.all(fs.storage.values().map(async (file) => {
1842
1843
  if (file.path && file.code) {
1843
- await result2.write(file.path, file.code);
1844
+ let id;
1845
+ if (fs._hasIds()) {
1846
+ id = fs.ids.find((fileId) => fileId.path === file.path);
1847
+ }
1848
+ let metadata;
1849
+ if (fs._hasMetadata()) {
1850
+ metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
1851
+ }
1852
+ await result.write(file.path, file.code, {
1853
+ meta: {
1854
+ id: id?.id || metadata?.id,
1855
+ type: metadata?.type,
1856
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1857
+ ret[kvp.key] = kvp.value;
1858
+ return ret;
1859
+ }, {}) : void 0,
1860
+ timestamp: metadata?.timestamp
1861
+ }
1862
+ });
1844
1863
  }
1845
1864
  }));
1846
1865
  }
1847
- }
1848
- const message = new $.Message();
1849
- const result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1850
- result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1851
- if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1852
- result.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1853
- const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1854
- if (meta.properties) {
1855
- const typeDefinition = {
1856
- file: path
1857
- };
1858
- if (isSetString(meta.properties.name)) {
1859
- typeDefinition.name = meta.properties.name;
1860
- }
1861
- if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
1862
- typeDefinition.input ??= {};
1863
- if (isSetString(meta.properties["input.file"])) {
1864
- typeDefinition.input.file = meta.properties["input.file"];
1866
+ if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1867
+ result.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1868
+ const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1869
+ if (meta.properties) {
1870
+ const typeDefinition = {
1871
+ file: path
1872
+ };
1873
+ if (isSetString(meta.properties.name)) {
1874
+ typeDefinition.name = meta.properties.name;
1865
1875
  }
1866
- if (isSetString(meta.properties["input.name"])) {
1867
- typeDefinition.input.name = meta.properties["input.name"];
1876
+ if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
1877
+ typeDefinition.input ??= {};
1878
+ if (isSetString(meta.properties["input.file"])) {
1879
+ typeDefinition.input.file = meta.properties["input.file"];
1880
+ }
1881
+ if (isSetString(meta.properties["input.name"])) {
1882
+ typeDefinition.input.name = meta.properties["input.name"];
1883
+ }
1868
1884
  }
1885
+ if (isSetString(meta.properties.output)) {
1886
+ typeDefinition.output = meta.properties.output;
1887
+ }
1888
+ return typeDefinition;
1869
1889
  }
1870
- if (isSetString(meta.properties.output)) {
1871
- typeDefinition.output = meta.properties.output;
1872
- }
1873
- return typeDefinition;
1874
- }
1875
- return null;
1876
- }).filter(Boolean);
1877
- result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1878
- context.entry = entry;
1890
+ return null;
1891
+ }).filter(Boolean);
1892
+ result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1893
+ context.entry = entry;
1894
+ } else {
1895
+ result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1896
+ }
1879
1897
  } else {
1880
- result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1898
+ const message = new $.Message();
1899
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1881
1900
  }
1901
+ result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1882
1902
  return result;
1883
1903
  }
1884
1904
  /**
@@ -1889,51 +1909,73 @@ var VirtualFileSystem = class _VirtualFileSystem {
1889
1909
  */
1890
1910
  static createSync(context) {
1891
1911
  context.debug("Starting virtual file system (VFS) initialization processes...");
1912
+ let result;
1892
1913
  if (!context.config.skipCache && existsSync(joinPaths$1(context.dataPath, "fs.bin"))) {
1893
1914
  const buffer = readFileBufferSync(joinPaths$1(context.dataPath, "fs.bin"));
1894
- const message2 = new $.Message(buffer, false);
1895
- const fs = message2.getRoot(FileSystem);
1896
- const result2 = new _VirtualFileSystem(context, fs);
1915
+ const message = new $.Message(buffer, false);
1916
+ const fs = message.getRoot(FileSystem);
1917
+ result = new _VirtualFileSystem(context, fs);
1897
1918
  if (fs._hasStorage() && fs.storage.length > 0) {
1898
- fs.storage.values().map((file) => {
1899
- result2.writeSync(file.path, file.code);
1919
+ fs.storage.values().forEach((file) => {
1920
+ if (file.path && file.code) {
1921
+ let id;
1922
+ if (fs._hasIds()) {
1923
+ id = fs.ids.find((fileId) => fileId.path === file.path);
1924
+ }
1925
+ let metadata;
1926
+ if (fs._hasMetadata()) {
1927
+ metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
1928
+ }
1929
+ result.writeSync(file.path, file.code, {
1930
+ meta: {
1931
+ id: id?.id || metadata?.id,
1932
+ type: metadata?.type,
1933
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1934
+ ret[kvp.key] = kvp.value;
1935
+ return ret;
1936
+ }, {}) : void 0,
1937
+ timestamp: metadata?.timestamp
1938
+ }
1939
+ });
1940
+ }
1900
1941
  });
1901
1942
  }
1902
- }
1903
- const message = new $.Message();
1904
- const result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1905
- result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1906
- if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1907
- result.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1908
- const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1909
- if (meta.properties) {
1910
- const typeDefinition = {
1911
- file: path
1912
- };
1913
- if (isSetString(meta.properties.name)) {
1914
- typeDefinition.name = meta.properties.name;
1915
- }
1916
- if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
1917
- typeDefinition.input ??= {};
1918
- if (isSetString(meta.properties["input.file"])) {
1919
- typeDefinition.input.file = meta.properties["input.file"];
1943
+ if (result.#metadata && Object.keys(result.#metadata).length > 0) {
1944
+ result.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result.#metadata).length} previously stored metadata records...`);
1945
+ const entry = Object.entries(result.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1946
+ if (meta.properties) {
1947
+ const typeDefinition = {
1948
+ file: path
1949
+ };
1950
+ if (isSetString(meta.properties.name)) {
1951
+ typeDefinition.name = meta.properties.name;
1920
1952
  }
1921
- if (isSetString(meta.properties["input.name"])) {
1922
- typeDefinition.input.name = meta.properties["input.name"];
1953
+ if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
1954
+ typeDefinition.input ??= {};
1955
+ if (isSetString(meta.properties["input.file"])) {
1956
+ typeDefinition.input.file = meta.properties["input.file"];
1957
+ }
1958
+ if (isSetString(meta.properties["input.name"])) {
1959
+ typeDefinition.input.name = meta.properties["input.name"];
1960
+ }
1923
1961
  }
1962
+ if (isSetString(meta.properties.output)) {
1963
+ typeDefinition.output = meta.properties.output;
1964
+ }
1965
+ return typeDefinition;
1924
1966
  }
1925
- if (isSetString(meta.properties.output)) {
1926
- typeDefinition.output = meta.properties.output;
1927
- }
1928
- return typeDefinition;
1929
- }
1930
- return null;
1931
- }).filter(Boolean);
1932
- result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1933
- context.entry = entry;
1967
+ return null;
1968
+ }).filter(Boolean);
1969
+ result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1970
+ context.entry = entry;
1971
+ } else {
1972
+ result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1973
+ }
1934
1974
  } else {
1935
- result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1975
+ const message = new $.Message();
1976
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1936
1977
  }
1978
+ result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1937
1979
  return result;
1938
1980
  }
1939
1981
  /**
package/dist/executors.js CHANGED
@@ -1,34 +1,34 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkZCZL3LTU_js = require('./chunk-ZCZL3LTU.js');
5
- var chunkEBLS2NI7_js = require('./chunk-EBLS2NI7.js');
6
- var chunkVZUAIBCN_js = require('./chunk-VZUAIBCN.js');
7
- var chunk2O3TU7YO_js = require('./chunk-2O3TU7YO.js');
8
- var chunk6C2WXF2T_js = require('./chunk-6C2WXF2T.js');
9
- require('./chunk-PXLCGFRS.js');
4
+ var chunkFJQUX7WA_js = require('./chunk-FJQUX7WA.js');
5
+ var chunk5XS6DFXA_js = require('./chunk-5XS6DFXA.js');
6
+ var chunkLTOM4NHQ_js = require('./chunk-LTOM4NHQ.js');
7
+ var chunkJAMDMEFP_js = require('./chunk-JAMDMEFP.js');
8
+ var chunkKARY6B6G_js = require('./chunk-KARY6B6G.js');
9
+ require('./chunk-IVQLGWB5.js');
10
10
  require('./chunk-DQI2I5KK.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
13
13
 
14
14
 
15
- Object.defineProperty(exports, "lint", {
15
+ Object.defineProperty(exports, "docs", {
16
16
  enumerable: true,
17
- get: function () { return chunkZCZL3LTU_js.executor_default; }
17
+ get: function () { return chunkFJQUX7WA_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "prepare", {
20
20
  enumerable: true,
21
- get: function () { return chunkEBLS2NI7_js.executor_default; }
21
+ get: function () { return chunk5XS6DFXA_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "build", {
24
24
  enumerable: true,
25
- get: function () { return chunkVZUAIBCN_js.executor_default; }
25
+ get: function () { return chunkLTOM4NHQ_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "clean", {
28
28
  enumerable: true,
29
- get: function () { return chunk2O3TU7YO_js.executor_default; }
29
+ get: function () { return chunkJAMDMEFP_js.executor_default; }
30
30
  });
31
- Object.defineProperty(exports, "docs", {
31
+ Object.defineProperty(exports, "lint", {
32
32
  enumerable: true,
33
- get: function () { return chunk6C2WXF2T_js.executor_default; }
33
+ get: function () { return chunkKARY6B6G_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-E6Z2SS7Z.mjs';
3
- export { executor_default as prepare } from './chunk-ZWQAXJKA.mjs';
4
- export { executor_default as build } from './chunk-RLQ2UU4B.mjs';
5
- export { executor_default as clean } from './chunk-W445DTXC.mjs';
6
- export { executor_default as docs } from './chunk-4EOJDVGM.mjs';
7
- import './chunk-YHFGZ6YM.mjs';
2
+ export { executor_default as docs } from './chunk-R2BX2ZOD.mjs';
3
+ export { executor_default as prepare } from './chunk-YXSRU7TG.mjs';
4
+ export { executor_default as build } from './chunk-6ZWAQLTV.mjs';
5
+ export { executor_default as clean } from './chunk-M75FFP6R.mjs';
6
+ export { executor_default as lint } from './chunk-ZGZRJ27Q.mjs';
7
+ import './chunk-ZKYFH6ZJ.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 chunkZCZL3LTU_js = require('./chunk-ZCZL3LTU.js');
6
- var chunkEBLS2NI7_js = require('./chunk-EBLS2NI7.js');
7
- var chunkVZUAIBCN_js = require('./chunk-VZUAIBCN.js');
8
- var chunk2O3TU7YO_js = require('./chunk-2O3TU7YO.js');
9
- var chunk6C2WXF2T_js = require('./chunk-6C2WXF2T.js');
5
+ var chunkFJQUX7WA_js = require('./chunk-FJQUX7WA.js');
6
+ var chunk5XS6DFXA_js = require('./chunk-5XS6DFXA.js');
7
+ var chunkLTOM4NHQ_js = require('./chunk-LTOM4NHQ.js');
8
+ var chunkJAMDMEFP_js = require('./chunk-JAMDMEFP.js');
9
+ var chunkKARY6B6G_js = require('./chunk-KARY6B6G.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-PXLCGFRS.js');
12
+ require('./chunk-IVQLGWB5.js');
13
13
  require('./chunk-QSMJD4CD.js');
14
14
  require('./chunk-DQI2I5KK.js');
15
15
  require('./chunk-IQVSZEQ6.js');
@@ -21,25 +21,25 @@ Object.defineProperty(exports, "createNodesV2", {
21
21
  enumerable: true,
22
22
  get: function () { return chunkTNFRQNSW_js.createNodesV2; }
23
23
  });
24
- Object.defineProperty(exports, "lint", {
24
+ Object.defineProperty(exports, "docs", {
25
25
  enumerable: true,
26
- get: function () { return chunkZCZL3LTU_js.executor_default; }
26
+ get: function () { return chunkFJQUX7WA_js.executor_default; }
27
27
  });
28
28
  Object.defineProperty(exports, "prepare", {
29
29
  enumerable: true,
30
- get: function () { return chunkEBLS2NI7_js.executor_default; }
30
+ get: function () { return chunk5XS6DFXA_js.executor_default; }
31
31
  });
32
32
  Object.defineProperty(exports, "build", {
33
33
  enumerable: true,
34
- get: function () { return chunkVZUAIBCN_js.executor_default; }
34
+ get: function () { return chunkLTOM4NHQ_js.executor_default; }
35
35
  });
36
36
  Object.defineProperty(exports, "clean", {
37
37
  enumerable: true,
38
- get: function () { return chunk2O3TU7YO_js.executor_default; }
38
+ get: function () { return chunkJAMDMEFP_js.executor_default; }
39
39
  });
40
- Object.defineProperty(exports, "docs", {
40
+ Object.defineProperty(exports, "lint", {
41
41
  enumerable: true,
42
- get: function () { return chunk6C2WXF2T_js.executor_default; }
42
+ get: function () { return chunkKARY6B6G_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-E6Z2SS7Z.mjs';
4
- export { executor_default as prepare } from './chunk-ZWQAXJKA.mjs';
5
- export { executor_default as build } from './chunk-RLQ2UU4B.mjs';
6
- export { executor_default as clean } from './chunk-W445DTXC.mjs';
7
- export { executor_default as docs } from './chunk-4EOJDVGM.mjs';
3
+ export { executor_default as docs } from './chunk-R2BX2ZOD.mjs';
4
+ export { executor_default as prepare } from './chunk-YXSRU7TG.mjs';
5
+ export { executor_default as build } from './chunk-6ZWAQLTV.mjs';
6
+ export { executor_default as clean } from './chunk-M75FFP6R.mjs';
7
+ export { executor_default as lint } from './chunk-ZGZRJ27Q.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-YHFGZ6YM.mjs';
10
+ import './chunk-ZKYFH6ZJ.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 chunkPXLCGFRS_js = require('../../chunk-PXLCGFRS.js');
3
+ var chunkIVQLGWB5_js = require('../../chunk-IVQLGWB5.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 chunkPXLCGFRS_js.withExecutor; }
11
+ get: function () { return chunkIVQLGWB5_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-YHFGZ6YM.mjs';
1
+ export { withExecutor } from '../../chunk-ZKYFH6ZJ.mjs';
2
2
  import '../../chunk-OVX2CEXQ.mjs';
3
3
  import '../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunkVZUAIBCN_js = require('../../../chunk-VZUAIBCN.js');
6
- require('../../../chunk-PXLCGFRS.js');
5
+ var chunkLTOM4NHQ_js = require('../../../chunk-LTOM4NHQ.js');
6
+ require('../../../chunk-IVQLGWB5.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 chunkVZUAIBCN_js.executor_default; }
14
+ get: function () { return chunkLTOM4NHQ_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkVZUAIBCN_js.executorFn; }
18
+ get: function () { return chunkLTOM4NHQ_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-RLQ2UU4B.mjs';
2
- import '../../../chunk-YHFGZ6YM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-6ZWAQLTV.mjs';
2
+ import '../../../chunk-ZKYFH6ZJ.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 chunk2O3TU7YO_js = require('../../../chunk-2O3TU7YO.js');
6
- require('../../../chunk-PXLCGFRS.js');
5
+ var chunkJAMDMEFP_js = require('../../../chunk-JAMDMEFP.js');
6
+ require('../../../chunk-IVQLGWB5.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 chunk2O3TU7YO_js.executor_default; }
14
+ get: function () { return chunkJAMDMEFP_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk2O3TU7YO_js.executorFn; }
18
+ get: function () { return chunkJAMDMEFP_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-W445DTXC.mjs';
2
- import '../../../chunk-YHFGZ6YM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-M75FFP6R.mjs';
2
+ import '../../../chunk-ZKYFH6ZJ.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 chunk6C2WXF2T_js = require('../../../chunk-6C2WXF2T.js');
6
- require('../../../chunk-PXLCGFRS.js');
5
+ var chunkFJQUX7WA_js = require('../../../chunk-FJQUX7WA.js');
6
+ require('../../../chunk-IVQLGWB5.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 chunk6C2WXF2T_js.executor_default; }
14
+ get: function () { return chunkFJQUX7WA_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunk6C2WXF2T_js.executorFn; }
18
+ get: function () { return chunkFJQUX7WA_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-4EOJDVGM.mjs';
2
- import '../../../chunk-YHFGZ6YM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-R2BX2ZOD.mjs';
2
+ import '../../../chunk-ZKYFH6ZJ.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 chunkZCZL3LTU_js = require('../../../chunk-ZCZL3LTU.js');
6
- require('../../../chunk-PXLCGFRS.js');
5
+ var chunkKARY6B6G_js = require('../../../chunk-KARY6B6G.js');
6
+ require('../../../chunk-IVQLGWB5.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 chunkZCZL3LTU_js.executor_default; }
14
+ get: function () { return chunkKARY6B6G_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkZCZL3LTU_js.executorFn; }
18
+ get: function () { return chunkKARY6B6G_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-E6Z2SS7Z.mjs';
2
- import '../../../chunk-YHFGZ6YM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-ZGZRJ27Q.mjs';
2
+ import '../../../chunk-ZKYFH6ZJ.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 chunkEBLS2NI7_js = require('../../../chunk-EBLS2NI7.js');
6
- require('../../../chunk-PXLCGFRS.js');
5
+ var chunk5XS6DFXA_js = require('../../../chunk-5XS6DFXA.js');
6
+ require('../../../chunk-IVQLGWB5.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 chunkEBLS2NI7_js.executor_default; }
14
+ get: function () { return chunk5XS6DFXA_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkEBLS2NI7_js.executorFn; }
18
+ get: function () { return chunk5XS6DFXA_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-ZWQAXJKA.mjs';
2
- import '../../../chunk-YHFGZ6YM.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-YXSRU7TG.mjs';
2
+ import '../../../chunk-ZKYFH6ZJ.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.81",
3
+ "version": "0.11.83",
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.78",
185
+ "@storm-software/build-tools": "^0.158.79",
186
186
  "@storm-software/config": "^1.135.0",
187
- "@storm-software/config-tools": "^1.188.78",
188
- "@storm-software/esbuild": "^0.53.78",
189
- "@storm-software/unbuild": "^0.57.78",
190
- "@storm-software/workspace-tools": "^1.294.24",
187
+ "@storm-software/config-tools": "^1.188.79",
188
+ "@storm-software/esbuild": "^0.53.79",
189
+ "@storm-software/unbuild": "^0.57.79",
190
+ "@storm-software/workspace-tools": "^1.294.25",
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.25"
199
+ "powerlines": "^0.37.27"
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": "2cbfb74bf61f18dc8309d967fd26a769b45cd1c0"
213
+ "gitHead": "2374286888f4f152371560b1375a4ad46b1d9e5d"
214
214
  }