@powerlines/nx 0.11.81 → 0.11.82

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 +6 -0
  2. package/dist/{chunk-EBLS2NI7.js → chunk-2RNB6HQA.js} +2 -2
  3. package/dist/{chunk-ZWQAXJKA.mjs → chunk-4DXTUU2R.mjs} +1 -1
  4. package/dist/{chunk-YHFGZ6YM.mjs → chunk-6JOZJJIR.mjs} +107 -67
  5. package/dist/{chunk-ZCZL3LTU.js → chunk-6LY6DUVG.js} +2 -2
  6. package/dist/{chunk-PXLCGFRS.js → chunk-7AUML5JI.js} +107 -67
  7. package/dist/{chunk-RLQ2UU4B.mjs → chunk-BTVHNGFK.mjs} +1 -1
  8. package/dist/{chunk-W445DTXC.mjs → chunk-EEUJQ3AZ.mjs} +1 -1
  9. package/dist/{chunk-4EOJDVGM.mjs → chunk-KYWEH3JR.mjs} +1 -1
  10. package/dist/{chunk-E6Z2SS7Z.mjs → chunk-LS4Q6Y4T.mjs} +1 -1
  11. package/dist/{chunk-VZUAIBCN.js → chunk-X435L7KD.js} +2 -2
  12. package/dist/{chunk-6C2WXF2T.js → chunk-XQNQTM57.js} +2 -2
  13. package/dist/{chunk-2O3TU7YO.js → chunk-ZSIHOWE4.js} +2 -2
  14. package/dist/executors.js +11 -11
  15. package/dist/executors.mjs +6 -6
  16. package/dist/index.js +11 -11
  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,12 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.11.81](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.81) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **powerlines** to **v0.37.25**
10
+
5
11
  ## [0.11.80](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.80) (01/14/2026)
6
12
 
7
13
  ### Updated Dependencies
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunk7AUML5JI_js = require('./chunk-7AUML5JI.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 = chunk7AUML5JI_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-6JOZJJIR.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1832,53 +1832,72 @@ 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);
1838
+ const message = new $.Message(buffer, false);
1839
+ const fs = message.getRoot(FileSystem);
1839
1840
  const result2 = 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
+ if (fs._hasIds()) {
1845
+ fs.ids.find((fileId) => fileId.path === file.path);
1846
+ }
1847
+ let metadata;
1848
+ if (fs._hasMetadata()) {
1849
+ metadata = fs.metadata.find((meta) => meta.id === (file.path));
1850
+ }
1851
+ await result2.write(file.path, file.code, {
1852
+ meta: {
1853
+ id: metadata?.id,
1854
+ type: metadata?.type,
1855
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1856
+ ret[kvp.key] = kvp.value;
1857
+ return ret;
1858
+ }, {}) : void 0,
1859
+ timestamp: metadata?.timestamp
1860
+ }
1861
+ });
1844
1862
  }
1845
1863
  }));
1846
1864
  }
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"];
1865
+ if (result2.#metadata && Object.keys(result2.#metadata).length > 0) {
1866
+ result2.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result2.#metadata).length} previously stored metadata records...`);
1867
+ const entry = Object.entries(result2.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1868
+ if (meta.properties) {
1869
+ const typeDefinition = {
1870
+ file: path
1871
+ };
1872
+ if (isSetString(meta.properties.name)) {
1873
+ typeDefinition.name = meta.properties.name;
1865
1874
  }
1866
- if (isSetString(meta.properties["input.name"])) {
1867
- typeDefinition.input.name = meta.properties["input.name"];
1875
+ if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
1876
+ typeDefinition.input ??= {};
1877
+ if (isSetString(meta.properties["input.file"])) {
1878
+ typeDefinition.input.file = meta.properties["input.file"];
1879
+ }
1880
+ if (isSetString(meta.properties["input.name"])) {
1881
+ typeDefinition.input.name = meta.properties["input.name"];
1882
+ }
1868
1883
  }
1884
+ if (isSetString(meta.properties.output)) {
1885
+ typeDefinition.output = meta.properties.output;
1886
+ }
1887
+ return typeDefinition;
1869
1888
  }
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;
1889
+ return null;
1890
+ }).filter(Boolean);
1891
+ result2.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1892
+ context.entry = entry;
1893
+ } else {
1894
+ result2.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1895
+ }
1879
1896
  } else {
1880
- result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1897
+ const message = new $.Message();
1898
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1881
1899
  }
1900
+ result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1882
1901
  return result;
1883
1902
  }
1884
1903
  /**
@@ -1889,51 +1908,72 @@ var VirtualFileSystem = class _VirtualFileSystem {
1889
1908
  */
1890
1909
  static createSync(context) {
1891
1910
  context.debug("Starting virtual file system (VFS) initialization processes...");
1911
+ let result;
1892
1912
  if (!context.config.skipCache && existsSync(joinPaths$1(context.dataPath, "fs.bin"))) {
1893
1913
  const buffer = readFileBufferSync(joinPaths$1(context.dataPath, "fs.bin"));
1894
- const message2 = new $.Message(buffer, false);
1895
- const fs = message2.getRoot(FileSystem);
1914
+ const message = new $.Message(buffer, false);
1915
+ const fs = message.getRoot(FileSystem);
1896
1916
  const result2 = new _VirtualFileSystem(context, fs);
1897
1917
  if (fs._hasStorage() && fs.storage.length > 0) {
1898
- fs.storage.values().map((file) => {
1899
- result2.writeSync(file.path, file.code);
1918
+ fs.storage.values().forEach((file) => {
1919
+ if (file.path && file.code) {
1920
+ if (fs._hasIds()) {
1921
+ fs.ids.find((fileId) => fileId.path === file.path);
1922
+ }
1923
+ let metadata;
1924
+ if (fs._hasMetadata()) {
1925
+ metadata = fs.metadata.find((meta) => meta.id === (file.path));
1926
+ }
1927
+ result2.writeSync(file.path, file.code, {
1928
+ meta: {
1929
+ id: metadata?.id,
1930
+ type: metadata?.type,
1931
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1932
+ ret[kvp.key] = kvp.value;
1933
+ return ret;
1934
+ }, {}) : void 0,
1935
+ timestamp: metadata?.timestamp
1936
+ }
1937
+ });
1938
+ }
1900
1939
  });
1901
1940
  }
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"];
1941
+ if (result2.#metadata && Object.keys(result2.#metadata).length > 0) {
1942
+ result2.#log(LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result2.#metadata).length} previously stored metadata records...`);
1943
+ const entry = Object.entries(result2.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1944
+ if (meta.properties) {
1945
+ const typeDefinition = {
1946
+ file: path
1947
+ };
1948
+ if (isSetString(meta.properties.name)) {
1949
+ typeDefinition.name = meta.properties.name;
1920
1950
  }
1921
- if (isSetString(meta.properties["input.name"])) {
1922
- typeDefinition.input.name = meta.properties["input.name"];
1951
+ if (isSetString(meta.properties["input.file"]) || isSetString(meta.properties["input.name"])) {
1952
+ typeDefinition.input ??= {};
1953
+ if (isSetString(meta.properties["input.file"])) {
1954
+ typeDefinition.input.file = meta.properties["input.file"];
1955
+ }
1956
+ if (isSetString(meta.properties["input.name"])) {
1957
+ typeDefinition.input.name = meta.properties["input.name"];
1958
+ }
1923
1959
  }
1960
+ if (isSetString(meta.properties.output)) {
1961
+ typeDefinition.output = meta.properties.output;
1962
+ }
1963
+ return typeDefinition;
1924
1964
  }
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;
1965
+ return null;
1966
+ }).filter(Boolean);
1967
+ result2.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1968
+ context.entry = entry;
1969
+ } else {
1970
+ result2.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1971
+ }
1934
1972
  } else {
1935
- result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1973
+ const message = new $.Message();
1974
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1936
1975
  }
1976
+ result.#log(LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1937
1977
  return result;
1938
1978
  }
1939
1979
  /**
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunk7AUML5JI_js = require('./chunk-7AUML5JI.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 = chunk7AUML5JI_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1861,53 +1861,72 @@ 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);
1867
+ const message = new $__namespace.Message(buffer$1, false);
1868
+ const fs = message.getRoot(FileSystem);
1868
1869
  const result2 = 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
+ if (fs._hasIds()) {
1874
+ fs.ids.find((fileId) => fileId.path === file.path);
1875
+ }
1876
+ let metadata;
1877
+ if (fs._hasMetadata()) {
1878
+ metadata = fs.metadata.find((meta) => meta.id === (file.path));
1879
+ }
1880
+ await result2.write(file.path, file.code, {
1881
+ meta: {
1882
+ id: metadata?.id,
1883
+ type: metadata?.type,
1884
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1885
+ ret[kvp.key] = kvp.value;
1886
+ return ret;
1887
+ }, {}) : void 0,
1888
+ timestamp: metadata?.timestamp
1889
+ }
1890
+ });
1873
1891
  }
1874
1892
  }));
1875
1893
  }
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"];
1894
+ if (result2.#metadata && Object.keys(result2.#metadata).length > 0) {
1895
+ result2.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result2.#metadata).length} previously stored metadata records...`);
1896
+ const entry = Object.entries(result2.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1897
+ if (meta.properties) {
1898
+ const typeDefinition = {
1899
+ file: path
1900
+ };
1901
+ if (isSetString.isSetString(meta.properties.name)) {
1902
+ typeDefinition.name = meta.properties.name;
1894
1903
  }
1895
- if (isSetString.isSetString(meta.properties["input.name"])) {
1896
- typeDefinition.input.name = meta.properties["input.name"];
1904
+ if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
1905
+ typeDefinition.input ??= {};
1906
+ if (isSetString.isSetString(meta.properties["input.file"])) {
1907
+ typeDefinition.input.file = meta.properties["input.file"];
1908
+ }
1909
+ if (isSetString.isSetString(meta.properties["input.name"])) {
1910
+ typeDefinition.input.name = meta.properties["input.name"];
1911
+ }
1897
1912
  }
1913
+ if (isSetString.isSetString(meta.properties.output)) {
1914
+ typeDefinition.output = meta.properties.output;
1915
+ }
1916
+ return typeDefinition;
1898
1917
  }
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;
1918
+ return null;
1919
+ }).filter(Boolean);
1920
+ result2.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1921
+ context.entry = entry;
1922
+ } else {
1923
+ result2.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1924
+ }
1908
1925
  } else {
1909
- result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
1926
+ const message = new $__namespace.Message();
1927
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1910
1928
  }
1929
+ result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1911
1930
  return result;
1912
1931
  }
1913
1932
  /**
@@ -1918,51 +1937,72 @@ var VirtualFileSystem = class _VirtualFileSystem {
1918
1937
  */
1919
1938
  static createSync(context) {
1920
1939
  context.debug("Starting virtual file system (VFS) initialization processes...");
1940
+ let result;
1921
1941
  if (!context.config.skipCache && exists.existsSync(joinPaths.joinPaths(context.dataPath, "fs.bin"))) {
1922
1942
  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);
1943
+ const message = new $__namespace.Message(buffer$1, false);
1944
+ const fs = message.getRoot(FileSystem);
1925
1945
  const result2 = new _VirtualFileSystem(context, fs);
1926
1946
  if (fs._hasStorage() && fs.storage.length > 0) {
1927
- fs.storage.values().map((file) => {
1928
- result2.writeSync(file.path, file.code);
1947
+ fs.storage.values().forEach((file) => {
1948
+ if (file.path && file.code) {
1949
+ if (fs._hasIds()) {
1950
+ fs.ids.find((fileId) => fileId.path === file.path);
1951
+ }
1952
+ let metadata;
1953
+ if (fs._hasMetadata()) {
1954
+ metadata = fs.metadata.find((meta) => meta.id === (file.path));
1955
+ }
1956
+ result2.writeSync(file.path, file.code, {
1957
+ meta: {
1958
+ id: metadata?.id,
1959
+ type: metadata?.type,
1960
+ properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
1961
+ ret[kvp.key] = kvp.value;
1962
+ return ret;
1963
+ }, {}) : void 0,
1964
+ timestamp: metadata?.timestamp
1965
+ }
1966
+ });
1967
+ }
1929
1968
  });
1930
1969
  }
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"];
1970
+ if (result2.#metadata && Object.keys(result2.#metadata).length > 0) {
1971
+ result2.#log(types.LogLevelLabel.DEBUG, `Preparing to load ${Object.keys(result2.#metadata).length} previously stored metadata records...`);
1972
+ const entry = Object.entries(result2.#metadata).filter(([, meta]) => meta && meta.type === "entry").map(([path, meta]) => {
1973
+ if (meta.properties) {
1974
+ const typeDefinition = {
1975
+ file: path
1976
+ };
1977
+ if (isSetString.isSetString(meta.properties.name)) {
1978
+ typeDefinition.name = meta.properties.name;
1949
1979
  }
1950
- if (isSetString.isSetString(meta.properties["input.name"])) {
1951
- typeDefinition.input.name = meta.properties["input.name"];
1980
+ if (isSetString.isSetString(meta.properties["input.file"]) || isSetString.isSetString(meta.properties["input.name"])) {
1981
+ typeDefinition.input ??= {};
1982
+ if (isSetString.isSetString(meta.properties["input.file"])) {
1983
+ typeDefinition.input.file = meta.properties["input.file"];
1984
+ }
1985
+ if (isSetString.isSetString(meta.properties["input.name"])) {
1986
+ typeDefinition.input.name = meta.properties["input.name"];
1987
+ }
1952
1988
  }
1989
+ if (isSetString.isSetString(meta.properties.output)) {
1990
+ typeDefinition.output = meta.properties.output;
1991
+ }
1992
+ return typeDefinition;
1953
1993
  }
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;
1994
+ return null;
1995
+ }).filter(Boolean);
1996
+ result2.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
1997
+ context.entry = entry;
1998
+ } else {
1999
+ result2.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
2000
+ }
1963
2001
  } else {
1964
- result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
2002
+ const message = new $__namespace.Message();
2003
+ result = new _VirtualFileSystem(context, message.initRoot(FileSystem));
1965
2004
  }
2005
+ result.#log(types.LogLevelLabel.DEBUG, "Successfully completed virtual file system (VFS) initialization.");
1966
2006
  return result;
1967
2007
  }
1968
2008
  /**
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-YHFGZ6YM.mjs';
1
+ import { withExecutor } from './chunk-6JOZJJIR.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-6JOZJJIR.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-6JOZJJIR.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-6JOZJJIR.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunk7AUML5JI_js = require('./chunk-7AUML5JI.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 = chunk7AUML5JI_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 chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunk7AUML5JI_js = require('./chunk-7AUML5JI.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 = chunk7AUML5JI_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 chunkPXLCGFRS_js = require('./chunk-PXLCGFRS.js');
3
+ var chunk7AUML5JI_js = require('./chunk-7AUML5JI.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 = chunk7AUML5JI_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 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 chunk6LY6DUVG_js = require('./chunk-6LY6DUVG.js');
5
+ var chunk2RNB6HQA_js = require('./chunk-2RNB6HQA.js');
6
+ var chunkX435L7KD_js = require('./chunk-X435L7KD.js');
7
+ var chunkZSIHOWE4_js = require('./chunk-ZSIHOWE4.js');
8
+ var chunkXQNQTM57_js = require('./chunk-XQNQTM57.js');
9
+ require('./chunk-7AUML5JI.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 chunkZCZL3LTU_js.executor_default; }
17
+ get: function () { return chunk6LY6DUVG_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 chunk2RNB6HQA_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 chunkX435L7KD_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 chunkZSIHOWE4_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "docs", {
32
32
  enumerable: true,
33
- get: function () { return chunk6C2WXF2T_js.executor_default; }
33
+ get: function () { return chunkXQNQTM57_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 lint } from './chunk-LS4Q6Y4T.mjs';
3
+ export { executor_default as prepare } from './chunk-4DXTUU2R.mjs';
4
+ export { executor_default as build } from './chunk-BTVHNGFK.mjs';
5
+ export { executor_default as clean } from './chunk-EEUJQ3AZ.mjs';
6
+ export { executor_default as docs } from './chunk-KYWEH3JR.mjs';
7
+ import './chunk-6JOZJJIR.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 chunk6LY6DUVG_js = require('./chunk-6LY6DUVG.js');
6
+ var chunk2RNB6HQA_js = require('./chunk-2RNB6HQA.js');
7
+ var chunkX435L7KD_js = require('./chunk-X435L7KD.js');
8
+ var chunkZSIHOWE4_js = require('./chunk-ZSIHOWE4.js');
9
+ var chunkXQNQTM57_js = require('./chunk-XQNQTM57.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-PXLCGFRS.js');
12
+ require('./chunk-7AUML5JI.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 chunkZCZL3LTU_js.executor_default; }
26
+ get: function () { return chunk6LY6DUVG_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 chunk2RNB6HQA_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 chunkX435L7KD_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 chunkZSIHOWE4_js.executor_default; }
39
39
  });
40
40
  Object.defineProperty(exports, "docs", {
41
41
  enumerable: true,
42
- get: function () { return chunk6C2WXF2T_js.executor_default; }
42
+ get: function () { return chunkXQNQTM57_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 lint } from './chunk-LS4Q6Y4T.mjs';
4
+ export { executor_default as prepare } from './chunk-4DXTUU2R.mjs';
5
+ export { executor_default as build } from './chunk-BTVHNGFK.mjs';
6
+ export { executor_default as clean } from './chunk-EEUJQ3AZ.mjs';
7
+ export { executor_default as docs } from './chunk-KYWEH3JR.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-6JOZJJIR.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 chunk7AUML5JI_js = require('../../chunk-7AUML5JI.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 chunk7AUML5JI_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-YHFGZ6YM.mjs';
1
+ export { withExecutor } from '../../chunk-6JOZJJIR.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 chunkX435L7KD_js = require('../../../chunk-X435L7KD.js');
6
+ require('../../../chunk-7AUML5JI.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 chunkX435L7KD_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 chunkX435L7KD_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-BTVHNGFK.mjs';
2
+ import '../../../chunk-6JOZJJIR.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 chunkZSIHOWE4_js = require('../../../chunk-ZSIHOWE4.js');
6
+ require('../../../chunk-7AUML5JI.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 chunkZSIHOWE4_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 chunkZSIHOWE4_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-EEUJQ3AZ.mjs';
2
+ import '../../../chunk-6JOZJJIR.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 chunkXQNQTM57_js = require('../../../chunk-XQNQTM57.js');
6
+ require('../../../chunk-7AUML5JI.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 chunkXQNQTM57_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 chunkXQNQTM57_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-KYWEH3JR.mjs';
2
+ import '../../../chunk-6JOZJJIR.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 chunk6LY6DUVG_js = require('../../../chunk-6LY6DUVG.js');
6
+ require('../../../chunk-7AUML5JI.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 chunk6LY6DUVG_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 chunk6LY6DUVG_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-LS4Q6Y4T.mjs';
2
+ import '../../../chunk-6JOZJJIR.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 chunk2RNB6HQA_js = require('../../../chunk-2RNB6HQA.js');
6
+ require('../../../chunk-7AUML5JI.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 chunk2RNB6HQA_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 chunk2RNB6HQA_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-4DXTUU2R.mjs';
2
+ import '../../../chunk-6JOZJJIR.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.82",
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.26"
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": "641addc639bbab3679a139dcaeb2ad810da4ca3e"
214
214
  }