@powerlines/nx 0.11.82 → 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.
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-2RNB6HQA.js → chunk-5XS6DFXA.js} +2 -2
- package/dist/{chunk-BTVHNGFK.mjs → chunk-6ZWAQLTV.mjs} +1 -1
- package/dist/{chunk-XQNQTM57.js → chunk-FJQUX7WA.js} +2 -2
- package/dist/{chunk-7AUML5JI.js → chunk-IVQLGWB5.js} +22 -20
- package/dist/{chunk-ZSIHOWE4.js → chunk-JAMDMEFP.js} +2 -2
- package/dist/{chunk-6LY6DUVG.js → chunk-KARY6B6G.js} +2 -2
- package/dist/{chunk-X435L7KD.js → chunk-LTOM4NHQ.js} +2 -2
- package/dist/{chunk-EEUJQ3AZ.mjs → chunk-M75FFP6R.mjs} +1 -1
- package/dist/{chunk-KYWEH3JR.mjs → chunk-R2BX2ZOD.mjs} +1 -1
- package/dist/{chunk-4DXTUU2R.mjs → chunk-YXSRU7TG.mjs} +1 -1
- package/dist/{chunk-LS4Q6Y4T.mjs → chunk-ZGZRJ27Q.mjs} +1 -1
- package/dist/{chunk-6JOZJJIR.mjs → chunk-ZKYFH6ZJ.mjs} +22 -20
- package/dist/executors.js +13 -13
- package/dist/executors.mjs +6 -6
- package/dist/index.js +13 -13
- package/dist/index.mjs +6 -6
- package/dist/src/base/base-executor.js +2 -2
- package/dist/src/base/base-executor.mjs +1 -1
- package/dist/src/executors/build/executor.js +4 -4
- package/dist/src/executors/build/executor.mjs +2 -2
- package/dist/src/executors/clean/executor.js +4 -4
- package/dist/src/executors/clean/executor.mjs +2 -2
- package/dist/src/executors/docs/executor.js +4 -4
- package/dist/src/executors/docs/executor.mjs +2 -2
- package/dist/src/executors/lint/executor.js +4 -4
- package/dist/src/executors/lint/executor.mjs +2 -2
- package/dist/src/executors/prepare/executor.js +4 -4
- package/dist/src/executors/prepare/executor.mjs +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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
|
+
|
|
5
11
|
## [0.11.81](https://github.com/storm-software/powerlines/releases/tag/nx%400.11.81) (01/14/2026)
|
|
6
12
|
|
|
7
13
|
### Updated Dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
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 =
|
|
22
|
+
var executor = chunkIVQLGWB5_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 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 =
|
|
14
|
+
var executor = chunkIVQLGWB5_js.withExecutor("docs", executorFn);
|
|
15
15
|
var executor_default = executor;
|
|
16
16
|
|
|
17
17
|
exports.executorFn = executorFn;
|
|
@@ -1866,20 +1866,21 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1866
1866
|
const buffer$1 = await buffer.readFileBuffer(joinPaths.joinPaths(context.dataPath, "fs.bin"));
|
|
1867
1867
|
const message = new $__namespace.Message(buffer$1, false);
|
|
1868
1868
|
const fs = message.getRoot(FileSystem);
|
|
1869
|
-
|
|
1869
|
+
result = new _VirtualFileSystem(context, fs);
|
|
1870
1870
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1871
1871
|
await Promise.all(fs.storage.values().map(async (file) => {
|
|
1872
1872
|
if (file.path && file.code) {
|
|
1873
|
+
let id;
|
|
1873
1874
|
if (fs._hasIds()) {
|
|
1874
|
-
fs.ids.find((fileId) => fileId.path === file.path);
|
|
1875
|
+
id = fs.ids.find((fileId) => fileId.path === file.path);
|
|
1875
1876
|
}
|
|
1876
1877
|
let metadata;
|
|
1877
1878
|
if (fs._hasMetadata()) {
|
|
1878
|
-
metadata = fs.metadata.find((meta) => meta.id === (file.path));
|
|
1879
|
+
metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
|
|
1879
1880
|
}
|
|
1880
|
-
await
|
|
1881
|
+
await result.write(file.path, file.code, {
|
|
1881
1882
|
meta: {
|
|
1882
|
-
id: metadata?.id,
|
|
1883
|
+
id: id?.id || metadata?.id,
|
|
1883
1884
|
type: metadata?.type,
|
|
1884
1885
|
properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
|
|
1885
1886
|
ret[kvp.key] = kvp.value;
|
|
@@ -1891,9 +1892,9 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1891
1892
|
}
|
|
1892
1893
|
}));
|
|
1893
1894
|
}
|
|
1894
|
-
if (
|
|
1895
|
-
|
|
1896
|
-
const entry = Object.entries(
|
|
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]) => {
|
|
1897
1898
|
if (meta.properties) {
|
|
1898
1899
|
const typeDefinition = {
|
|
1899
1900
|
file: path
|
|
@@ -1917,10 +1918,10 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1917
1918
|
}
|
|
1918
1919
|
return null;
|
|
1919
1920
|
}).filter(Boolean);
|
|
1920
|
-
|
|
1921
|
+
result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
|
|
1921
1922
|
context.entry = entry;
|
|
1922
1923
|
} else {
|
|
1923
|
-
|
|
1924
|
+
result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
|
|
1924
1925
|
}
|
|
1925
1926
|
} else {
|
|
1926
1927
|
const message = new $__namespace.Message();
|
|
@@ -1942,20 +1943,21 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1942
1943
|
const buffer$1 = buffer.readFileBufferSync(joinPaths.joinPaths(context.dataPath, "fs.bin"));
|
|
1943
1944
|
const message = new $__namespace.Message(buffer$1, false);
|
|
1944
1945
|
const fs = message.getRoot(FileSystem);
|
|
1945
|
-
|
|
1946
|
+
result = new _VirtualFileSystem(context, fs);
|
|
1946
1947
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1947
1948
|
fs.storage.values().forEach((file) => {
|
|
1948
1949
|
if (file.path && file.code) {
|
|
1950
|
+
let id;
|
|
1949
1951
|
if (fs._hasIds()) {
|
|
1950
|
-
fs.ids.find((fileId) => fileId.path === file.path);
|
|
1952
|
+
id = fs.ids.find((fileId) => fileId.path === file.path);
|
|
1951
1953
|
}
|
|
1952
1954
|
let metadata;
|
|
1953
1955
|
if (fs._hasMetadata()) {
|
|
1954
|
-
metadata = fs.metadata.find((meta) => meta.id === (file.path));
|
|
1956
|
+
metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
|
|
1955
1957
|
}
|
|
1956
|
-
|
|
1958
|
+
result.writeSync(file.path, file.code, {
|
|
1957
1959
|
meta: {
|
|
1958
|
-
id: metadata?.id,
|
|
1960
|
+
id: id?.id || metadata?.id,
|
|
1959
1961
|
type: metadata?.type,
|
|
1960
1962
|
properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
|
|
1961
1963
|
ret[kvp.key] = kvp.value;
|
|
@@ -1967,9 +1969,9 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1967
1969
|
}
|
|
1968
1970
|
});
|
|
1969
1971
|
}
|
|
1970
|
-
if (
|
|
1971
|
-
|
|
1972
|
-
const entry = Object.entries(
|
|
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]) => {
|
|
1973
1975
|
if (meta.properties) {
|
|
1974
1976
|
const typeDefinition = {
|
|
1975
1977
|
file: path
|
|
@@ -1993,10 +1995,10 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1993
1995
|
}
|
|
1994
1996
|
return null;
|
|
1995
1997
|
}).filter(Boolean);
|
|
1996
|
-
|
|
1998
|
+
result.#log(types.LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
|
|
1997
1999
|
context.entry = entry;
|
|
1998
2000
|
} else {
|
|
1999
|
-
|
|
2001
|
+
result.#log(types.LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
|
|
2000
2002
|
}
|
|
2001
2003
|
} else {
|
|
2002
2004
|
const message = new $__namespace.Message();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
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 =
|
|
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
|
|
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 =
|
|
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
|
|
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 =
|
|
22
|
+
var executor = chunkIVQLGWB5_js.withExecutor("build", executorFn);
|
|
23
23
|
var executor_default = executor;
|
|
24
24
|
|
|
25
25
|
exports.executorFn = executorFn;
|
|
@@ -1837,20 +1837,21 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1837
1837
|
const buffer = await readFileBuffer(joinPaths$1(context.dataPath, "fs.bin"));
|
|
1838
1838
|
const message = new $.Message(buffer, false);
|
|
1839
1839
|
const fs = message.getRoot(FileSystem);
|
|
1840
|
-
|
|
1840
|
+
result = new _VirtualFileSystem(context, fs);
|
|
1841
1841
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1842
1842
|
await Promise.all(fs.storage.values().map(async (file) => {
|
|
1843
1843
|
if (file.path && file.code) {
|
|
1844
|
+
let id;
|
|
1844
1845
|
if (fs._hasIds()) {
|
|
1845
|
-
fs.ids.find((fileId) => fileId.path === file.path);
|
|
1846
|
+
id = fs.ids.find((fileId) => fileId.path === file.path);
|
|
1846
1847
|
}
|
|
1847
1848
|
let metadata;
|
|
1848
1849
|
if (fs._hasMetadata()) {
|
|
1849
|
-
metadata = fs.metadata.find((meta) => meta.id === (file.path));
|
|
1850
|
+
metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
|
|
1850
1851
|
}
|
|
1851
|
-
await
|
|
1852
|
+
await result.write(file.path, file.code, {
|
|
1852
1853
|
meta: {
|
|
1853
|
-
id: metadata?.id,
|
|
1854
|
+
id: id?.id || metadata?.id,
|
|
1854
1855
|
type: metadata?.type,
|
|
1855
1856
|
properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
|
|
1856
1857
|
ret[kvp.key] = kvp.value;
|
|
@@ -1862,9 +1863,9 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1862
1863
|
}
|
|
1863
1864
|
}));
|
|
1864
1865
|
}
|
|
1865
|
-
if (
|
|
1866
|
-
|
|
1867
|
-
const entry = Object.entries(
|
|
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]) => {
|
|
1868
1869
|
if (meta.properties) {
|
|
1869
1870
|
const typeDefinition = {
|
|
1870
1871
|
file: path
|
|
@@ -1888,10 +1889,10 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1888
1889
|
}
|
|
1889
1890
|
return null;
|
|
1890
1891
|
}).filter(Boolean);
|
|
1891
|
-
|
|
1892
|
+
result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
|
|
1892
1893
|
context.entry = entry;
|
|
1893
1894
|
} else {
|
|
1894
|
-
|
|
1895
|
+
result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
|
|
1895
1896
|
}
|
|
1896
1897
|
} else {
|
|
1897
1898
|
const message = new $.Message();
|
|
@@ -1913,20 +1914,21 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1913
1914
|
const buffer = readFileBufferSync(joinPaths$1(context.dataPath, "fs.bin"));
|
|
1914
1915
|
const message = new $.Message(buffer, false);
|
|
1915
1916
|
const fs = message.getRoot(FileSystem);
|
|
1916
|
-
|
|
1917
|
+
result = new _VirtualFileSystem(context, fs);
|
|
1917
1918
|
if (fs._hasStorage() && fs.storage.length > 0) {
|
|
1918
1919
|
fs.storage.values().forEach((file) => {
|
|
1919
1920
|
if (file.path && file.code) {
|
|
1921
|
+
let id;
|
|
1920
1922
|
if (fs._hasIds()) {
|
|
1921
|
-
fs.ids.find((fileId) => fileId.path === file.path);
|
|
1923
|
+
id = fs.ids.find((fileId) => fileId.path === file.path);
|
|
1922
1924
|
}
|
|
1923
1925
|
let metadata;
|
|
1924
1926
|
if (fs._hasMetadata()) {
|
|
1925
|
-
metadata = fs.metadata.find((meta) => meta.id === (file.path));
|
|
1927
|
+
metadata = fs.metadata.find((meta) => meta.id === (id?.id ?? file.path));
|
|
1926
1928
|
}
|
|
1927
|
-
|
|
1929
|
+
result.writeSync(file.path, file.code, {
|
|
1928
1930
|
meta: {
|
|
1929
|
-
id: metadata?.id,
|
|
1931
|
+
id: id?.id || metadata?.id,
|
|
1930
1932
|
type: metadata?.type,
|
|
1931
1933
|
properties: metadata?._hasProperties() ? metadata?.properties.values().reduce((ret, kvp) => {
|
|
1932
1934
|
ret[kvp.key] = kvp.value;
|
|
@@ -1938,9 +1940,9 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1938
1940
|
}
|
|
1939
1941
|
});
|
|
1940
1942
|
}
|
|
1941
|
-
if (
|
|
1942
|
-
|
|
1943
|
-
const entry = Object.entries(
|
|
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]) => {
|
|
1944
1946
|
if (meta.properties) {
|
|
1945
1947
|
const typeDefinition = {
|
|
1946
1948
|
file: path
|
|
@@ -1964,10 +1966,10 @@ var VirtualFileSystem = class _VirtualFileSystem {
|
|
|
1964
1966
|
}
|
|
1965
1967
|
return null;
|
|
1966
1968
|
}).filter(Boolean);
|
|
1967
|
-
|
|
1969
|
+
result.#log(LogLevelLabel.DEBUG, `Loaded ${entry.length} entry type definitions from VFS metadata.`);
|
|
1968
1970
|
context.entry = entry;
|
|
1969
1971
|
} else {
|
|
1970
|
-
|
|
1972
|
+
result.#log(LogLevelLabel.DEBUG, "No previously stored metadata records were found on the local system.");
|
|
1971
1973
|
}
|
|
1972
1974
|
} else {
|
|
1973
1975
|
const message = new $.Message();
|
package/dist/executors.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
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 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, "
|
|
15
|
+
Object.defineProperty(exports, "docs", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkFJQUX7WA_js.executor_default; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "prepare", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk5XS6DFXA_js.executor_default; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "build", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkLTOM4NHQ_js.executor_default; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "clean", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkJAMDMEFP_js.executor_default; }
|
|
30
30
|
});
|
|
31
|
-
Object.defineProperty(exports, "
|
|
31
|
+
Object.defineProperty(exports, "lint", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkKARY6B6G_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
|
|
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
|
|
7
|
-
import './chunk-
|
|
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
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
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-
|
|
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, "
|
|
24
|
+
Object.defineProperty(exports, "docs", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkFJQUX7WA_js.executor_default; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "prepare", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunk5XS6DFXA_js.executor_default; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "build", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkLTOM4NHQ_js.executor_default; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "clean", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkJAMDMEFP_js.executor_default; }
|
|
39
39
|
});
|
|
40
|
-
Object.defineProperty(exports, "
|
|
40
|
+
Object.defineProperty(exports, "lint", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
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
|
|
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
|
|
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-
|
|
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
|
|
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
|
|
11
|
+
get: function () { return chunkIVQLGWB5_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 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
|
|
14
|
+
get: function () { return chunkLTOM4NHQ_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkLTOM4NHQ_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-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
|
|
6
|
-
require('../../../chunk-
|
|
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
|
|
14
|
+
get: function () { return chunkJAMDMEFP_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkJAMDMEFP_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-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
|
|
6
|
-
require('../../../chunk-
|
|
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
|
|
14
|
+
get: function () { return chunkFJQUX7WA_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkFJQUX7WA_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-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
|
|
6
|
-
require('../../../chunk-
|
|
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
|
|
14
|
+
get: function () { return chunkKARY6B6G_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkKARY6B6G_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-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
|
|
6
|
-
require('../../../chunk-
|
|
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
|
|
14
|
+
get: function () { return chunk5XS6DFXA_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk5XS6DFXA_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-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.
|
|
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",
|
|
@@ -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.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": "
|
|
213
|
+
"gitHead": "2374286888f4f152371560b1375a4ad46b1d9e5d"
|
|
214
214
|
}
|