@storm-software/workspace-tools 1.6.44 → 1.6.45
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 +7 -0
- package/README.md +1 -1
- package/index.js +84 -84
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +21 -3
- package/src/executors/tsup/get-config.js +3 -2
- package/src/generators/init/init.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.6.44](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.6.43...workspace-tools-v1.6.44) (2023-11-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issue around writing data to package.json file ([991485e](https://github.com/storm-software/storm-ops/commit/991485e59b749c2278a90684126567835a0a0abc))
|
|
7
|
+
|
|
1
8
|
## [1.6.43](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.6.42...workspace-tools-v1.6.43) (2023-11-15)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
15
15
|
|
|
16
16
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
17
17
|
|
|
18
|
-
[](https://prettier.io/)
|
|
19
19
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
20
20
|
|
|
21
21
|
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ - This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
|
package/index.js
CHANGED
|
@@ -31575,7 +31575,7 @@ ${lanes.join("\n")}
|
|
|
31575
31575
|
const {
|
|
31576
31576
|
languageVersion,
|
|
31577
31577
|
setExternalModuleIndicator: overrideSetExternalModuleIndicator,
|
|
31578
|
-
impliedNodeFormat:
|
|
31578
|
+
impliedNodeFormat: format2
|
|
31579
31579
|
} = typeof languageVersionOrOptions === "object" ? languageVersionOrOptions : { languageVersion: languageVersionOrOptions };
|
|
31580
31580
|
if (languageVersion === 100) {
|
|
31581
31581
|
result = Parser.parseSourceFile(
|
|
@@ -31589,8 +31589,8 @@ ${lanes.join("\n")}
|
|
|
31589
31589
|
noop
|
|
31590
31590
|
);
|
|
31591
31591
|
} else {
|
|
31592
|
-
const setIndicator =
|
|
31593
|
-
file.impliedNodeFormat =
|
|
31592
|
+
const setIndicator = format2 === void 0 ? overrideSetExternalModuleIndicator : (file) => {
|
|
31593
|
+
file.impliedNodeFormat = format2;
|
|
31594
31594
|
return (overrideSetExternalModuleIndicator || setExternalModuleIndicator)(file);
|
|
31595
31595
|
};
|
|
31596
31596
|
result = Parser.parseSourceFile(
|
|
@@ -121326,8 +121326,8 @@ ${lanes.join("\n")}
|
|
|
121326
121326
|
writeNode(hint, node, sourceFile, beginPrint());
|
|
121327
121327
|
return endPrint();
|
|
121328
121328
|
}
|
|
121329
|
-
function printList(
|
|
121330
|
-
writeList(
|
|
121329
|
+
function printList(format2, nodes, sourceFile) {
|
|
121330
|
+
writeList(format2, nodes, sourceFile, beginPrint());
|
|
121331
121331
|
return endPrint();
|
|
121332
121332
|
}
|
|
121333
121333
|
function printBundle(bundle) {
|
|
@@ -121363,7 +121363,7 @@ ${lanes.join("\n")}
|
|
|
121363
121363
|
reset2();
|
|
121364
121364
|
writer = previousWriter;
|
|
121365
121365
|
}
|
|
121366
|
-
function writeList(
|
|
121366
|
+
function writeList(format2, nodes, sourceFile, output) {
|
|
121367
121367
|
const previousWriter = writer;
|
|
121368
121368
|
setWriter(
|
|
121369
121369
|
output,
|
|
@@ -121377,7 +121377,7 @@ ${lanes.join("\n")}
|
|
|
121377
121377
|
/*parentNode*/
|
|
121378
121378
|
void 0,
|
|
121379
121379
|
nodes,
|
|
121380
|
-
|
|
121380
|
+
format2
|
|
121381
121381
|
);
|
|
121382
121382
|
reset2();
|
|
121383
121383
|
writer = previousWriter;
|
|
@@ -123139,8 +123139,8 @@ ${lanes.join("\n")}
|
|
|
123139
123139
|
/*contextNode*/
|
|
123140
123140
|
node
|
|
123141
123141
|
);
|
|
123142
|
-
const
|
|
123143
|
-
emitList(node, node.statements,
|
|
123142
|
+
const format2 = forceSingleLine || getEmitFlags(node) & 1 ? 768 : 129;
|
|
123143
|
+
emitList(node, node.statements, format2);
|
|
123144
123144
|
emitTokenWithComment(
|
|
123145
123145
|
20,
|
|
123146
123146
|
node.statements.end,
|
|
@@ -123148,7 +123148,7 @@ ${lanes.join("\n")}
|
|
|
123148
123148
|
/*contextNode*/
|
|
123149
123149
|
node,
|
|
123150
123150
|
/*indentLeading*/
|
|
123151
|
-
!!(
|
|
123151
|
+
!!(format2 & 1)
|
|
123152
123152
|
);
|
|
123153
123153
|
}
|
|
123154
123154
|
function emitVariableStatement(node) {
|
|
@@ -124020,15 +124020,15 @@ ${lanes.join("\n")}
|
|
|
124020
124020
|
function emitCaseOrDefaultClauseRest(parentNode, statements, colonPos) {
|
|
124021
124021
|
const emitAsSingleStatement = statements.length === 1 && // treat synthesized nodes as located on the same line for emit purposes
|
|
124022
124022
|
(!currentSourceFile || nodeIsSynthesized(parentNode) || nodeIsSynthesized(statements[0]) || rangeStartPositionsAreOnSameLine(parentNode, statements[0], currentSourceFile));
|
|
124023
|
-
let
|
|
124023
|
+
let format2 = 163969;
|
|
124024
124024
|
if (emitAsSingleStatement) {
|
|
124025
124025
|
writeToken(59, colonPos, writePunctuation, parentNode);
|
|
124026
124026
|
writeSpace();
|
|
124027
|
-
|
|
124027
|
+
format2 &= ~(1 | 128);
|
|
124028
124028
|
} else {
|
|
124029
124029
|
emitTokenWithComment(59, colonPos, writePunctuation, parentNode);
|
|
124030
124030
|
}
|
|
124031
|
-
emitList(parentNode, statements,
|
|
124031
|
+
emitList(parentNode, statements, format2);
|
|
124032
124032
|
}
|
|
124033
124033
|
function emitHeritageClause(node) {
|
|
124034
124034
|
writeSpace();
|
|
@@ -124670,8 +124670,8 @@ ${lanes.join("\n")}
|
|
|
124670
124670
|
/* IndexSignatureParameters */
|
|
124671
124671
|
);
|
|
124672
124672
|
}
|
|
124673
|
-
function writeDelimiter(
|
|
124674
|
-
switch (
|
|
124673
|
+
function writeDelimiter(format2) {
|
|
124674
|
+
switch (format2 & 60) {
|
|
124675
124675
|
case 0:
|
|
124676
124676
|
break;
|
|
124677
124677
|
case 16:
|
|
@@ -124692,33 +124692,33 @@ ${lanes.join("\n")}
|
|
|
124692
124692
|
break;
|
|
124693
124693
|
}
|
|
124694
124694
|
}
|
|
124695
|
-
function emitList(parentNode, children,
|
|
124695
|
+
function emitList(parentNode, children, format2, parenthesizerRule, start, count) {
|
|
124696
124696
|
emitNodeList(
|
|
124697
124697
|
emit,
|
|
124698
124698
|
parentNode,
|
|
124699
124699
|
children,
|
|
124700
|
-
|
|
124700
|
+
format2 | (parentNode && getEmitFlags(parentNode) & 2 ? 65536 : 0),
|
|
124701
124701
|
parenthesizerRule,
|
|
124702
124702
|
start,
|
|
124703
124703
|
count
|
|
124704
124704
|
);
|
|
124705
124705
|
}
|
|
124706
|
-
function emitExpressionList(parentNode, children,
|
|
124707
|
-
emitNodeList(emitExpression, parentNode, children,
|
|
124706
|
+
function emitExpressionList(parentNode, children, format2, parenthesizerRule, start, count) {
|
|
124707
|
+
emitNodeList(emitExpression, parentNode, children, format2, parenthesizerRule, start, count);
|
|
124708
124708
|
}
|
|
124709
|
-
function emitNodeList(emit2, parentNode, children,
|
|
124709
|
+
function emitNodeList(emit2, parentNode, children, format2, parenthesizerRule, start = 0, count = children ? children.length - start : 0) {
|
|
124710
124710
|
const isUndefined = children === void 0;
|
|
124711
|
-
if (isUndefined &&
|
|
124711
|
+
if (isUndefined && format2 & 16384) {
|
|
124712
124712
|
return;
|
|
124713
124713
|
}
|
|
124714
124714
|
const isEmpty = children === void 0 || start >= children.length || count === 0;
|
|
124715
|
-
if (isEmpty &&
|
|
124715
|
+
if (isEmpty && format2 & 32768) {
|
|
124716
124716
|
onBeforeEmitNodeArray == null ? void 0 : onBeforeEmitNodeArray(children);
|
|
124717
124717
|
onAfterEmitNodeArray == null ? void 0 : onAfterEmitNodeArray(children);
|
|
124718
124718
|
return;
|
|
124719
124719
|
}
|
|
124720
|
-
if (
|
|
124721
|
-
writePunctuation(getOpeningBracket(
|
|
124720
|
+
if (format2 & 15360) {
|
|
124721
|
+
writePunctuation(getOpeningBracket(format2));
|
|
124722
124722
|
if (isEmpty && children) {
|
|
124723
124723
|
emitTrailingCommentsOfPosition(
|
|
124724
124724
|
children.pos,
|
|
@@ -124729,33 +124729,33 @@ ${lanes.join("\n")}
|
|
|
124729
124729
|
}
|
|
124730
124730
|
onBeforeEmitNodeArray == null ? void 0 : onBeforeEmitNodeArray(children);
|
|
124731
124731
|
if (isEmpty) {
|
|
124732
|
-
if (
|
|
124732
|
+
if (format2 & 1 && !(preserveSourceNewlines && (!parentNode || currentSourceFile && rangeIsOnSingleLine(parentNode, currentSourceFile)))) {
|
|
124733
124733
|
writeLine();
|
|
124734
|
-
} else if (
|
|
124734
|
+
} else if (format2 & 256 && !(format2 & 524288)) {
|
|
124735
124735
|
writeSpace();
|
|
124736
124736
|
}
|
|
124737
124737
|
} else {
|
|
124738
|
-
emitNodeListItems(emit2, parentNode, children,
|
|
124738
|
+
emitNodeListItems(emit2, parentNode, children, format2, parenthesizerRule, start, count, children.hasTrailingComma, children);
|
|
124739
124739
|
}
|
|
124740
124740
|
onAfterEmitNodeArray == null ? void 0 : onAfterEmitNodeArray(children);
|
|
124741
|
-
if (
|
|
124741
|
+
if (format2 & 15360) {
|
|
124742
124742
|
if (isEmpty && children) {
|
|
124743
124743
|
emitLeadingCommentsOfPosition(children.end);
|
|
124744
124744
|
}
|
|
124745
|
-
writePunctuation(getClosingBracket(
|
|
124745
|
+
writePunctuation(getClosingBracket(format2));
|
|
124746
124746
|
}
|
|
124747
124747
|
}
|
|
124748
|
-
function emitNodeListItems(emit2, parentNode, children,
|
|
124749
|
-
const mayEmitInterveningComments = (
|
|
124748
|
+
function emitNodeListItems(emit2, parentNode, children, format2, parenthesizerRule, start, count, hasTrailingComma, childrenTextRange) {
|
|
124749
|
+
const mayEmitInterveningComments = (format2 & 262144) === 0;
|
|
124750
124750
|
let shouldEmitInterveningComments = mayEmitInterveningComments;
|
|
124751
|
-
const leadingLineTerminatorCount = getLeadingLineTerminatorCount(parentNode, children[start],
|
|
124751
|
+
const leadingLineTerminatorCount = getLeadingLineTerminatorCount(parentNode, children[start], format2);
|
|
124752
124752
|
if (leadingLineTerminatorCount) {
|
|
124753
124753
|
writeLine(leadingLineTerminatorCount);
|
|
124754
124754
|
shouldEmitInterveningComments = false;
|
|
124755
|
-
} else if (
|
|
124755
|
+
} else if (format2 & 256) {
|
|
124756
124756
|
writeSpace();
|
|
124757
124757
|
}
|
|
124758
|
-
if (
|
|
124758
|
+
if (format2 & 128) {
|
|
124759
124759
|
increaseIndent();
|
|
124760
124760
|
}
|
|
124761
124761
|
const emitListItem = getEmitListItem(emit2, parenthesizerRule);
|
|
@@ -124764,27 +124764,27 @@ ${lanes.join("\n")}
|
|
|
124764
124764
|
let shouldDecreaseIndentAfterEmit = false;
|
|
124765
124765
|
for (let i = 0; i < count; i++) {
|
|
124766
124766
|
const child = children[start + i];
|
|
124767
|
-
if (
|
|
124767
|
+
if (format2 & 32) {
|
|
124768
124768
|
writeLine();
|
|
124769
|
-
writeDelimiter(
|
|
124769
|
+
writeDelimiter(format2);
|
|
124770
124770
|
} else if (previousSibling) {
|
|
124771
|
-
if (
|
|
124771
|
+
if (format2 & 60 && previousSibling.end !== (parentNode ? parentNode.end : -1)) {
|
|
124772
124772
|
const previousSiblingEmitFlags = getEmitFlags(previousSibling);
|
|
124773
124773
|
if (!(previousSiblingEmitFlags & 2048)) {
|
|
124774
124774
|
emitLeadingCommentsOfPosition(previousSibling.end);
|
|
124775
124775
|
}
|
|
124776
124776
|
}
|
|
124777
|
-
writeDelimiter(
|
|
124777
|
+
writeDelimiter(format2);
|
|
124778
124778
|
recordBundleFileInternalSectionEnd(previousSourceFileTextKind);
|
|
124779
|
-
const separatingLineTerminatorCount = getSeparatingLineTerminatorCount(previousSibling, child,
|
|
124779
|
+
const separatingLineTerminatorCount = getSeparatingLineTerminatorCount(previousSibling, child, format2);
|
|
124780
124780
|
if (separatingLineTerminatorCount > 0) {
|
|
124781
|
-
if ((
|
|
124781
|
+
if ((format2 & (3 | 128)) === 0) {
|
|
124782
124782
|
increaseIndent();
|
|
124783
124783
|
shouldDecreaseIndentAfterEmit = true;
|
|
124784
124784
|
}
|
|
124785
124785
|
writeLine(separatingLineTerminatorCount);
|
|
124786
124786
|
shouldEmitInterveningComments = false;
|
|
124787
|
-
} else if (previousSibling &&
|
|
124787
|
+
} else if (previousSibling && format2 & 512) {
|
|
124788
124788
|
writeSpace();
|
|
124789
124789
|
}
|
|
124790
124790
|
}
|
|
@@ -124805,7 +124805,7 @@ ${lanes.join("\n")}
|
|
|
124805
124805
|
}
|
|
124806
124806
|
const emitFlags = previousSibling ? getEmitFlags(previousSibling) : 0;
|
|
124807
124807
|
const skipTrailingComments = commentsDisabled || !!(emitFlags & 2048);
|
|
124808
|
-
const emitTrailingComma = hasTrailingComma &&
|
|
124808
|
+
const emitTrailingComma = hasTrailingComma && format2 & 64 && format2 & 16;
|
|
124809
124809
|
if (emitTrailingComma) {
|
|
124810
124810
|
if (previousSibling && !skipTrailingComments) {
|
|
124811
124811
|
emitTokenWithComment(28, previousSibling.end, writePunctuation, previousSibling);
|
|
@@ -124813,17 +124813,17 @@ ${lanes.join("\n")}
|
|
|
124813
124813
|
writePunctuation(",");
|
|
124814
124814
|
}
|
|
124815
124815
|
}
|
|
124816
|
-
if (previousSibling && (parentNode ? parentNode.end : -1) !== previousSibling.end &&
|
|
124816
|
+
if (previousSibling && (parentNode ? parentNode.end : -1) !== previousSibling.end && format2 & 60 && !skipTrailingComments) {
|
|
124817
124817
|
emitLeadingCommentsOfPosition(emitTrailingComma && (childrenTextRange == null ? void 0 : childrenTextRange.end) ? childrenTextRange.end : previousSibling.end);
|
|
124818
124818
|
}
|
|
124819
|
-
if (
|
|
124819
|
+
if (format2 & 128) {
|
|
124820
124820
|
decreaseIndent();
|
|
124821
124821
|
}
|
|
124822
124822
|
recordBundleFileInternalSectionEnd(previousSourceFileTextKind);
|
|
124823
|
-
const closingLineTerminatorCount = getClosingLineTerminatorCount(parentNode, children[start + count - 1],
|
|
124823
|
+
const closingLineTerminatorCount = getClosingLineTerminatorCount(parentNode, children[start + count - 1], format2, childrenTextRange);
|
|
124824
124824
|
if (closingLineTerminatorCount) {
|
|
124825
124825
|
writeLine(closingLineTerminatorCount);
|
|
124826
|
-
} else if (
|
|
124826
|
+
} else if (format2 & (2097152 | 256)) {
|
|
124827
124827
|
writeSpace();
|
|
124828
124828
|
}
|
|
124829
124829
|
}
|
|
@@ -124939,9 +124939,9 @@ ${lanes.join("\n")}
|
|
|
124939
124939
|
decreaseIndent();
|
|
124940
124940
|
}
|
|
124941
124941
|
}
|
|
124942
|
-
function getLeadingLineTerminatorCount(parentNode, firstChild,
|
|
124943
|
-
if (
|
|
124944
|
-
if (
|
|
124942
|
+
function getLeadingLineTerminatorCount(parentNode, firstChild, format2) {
|
|
124943
|
+
if (format2 & 2 || preserveSourceNewlines) {
|
|
124944
|
+
if (format2 & 65536) {
|
|
124945
124945
|
return 1;
|
|
124946
124946
|
}
|
|
124947
124947
|
if (firstChild === void 0) {
|
|
@@ -124966,14 +124966,14 @@ ${lanes.join("\n")}
|
|
|
124966
124966
|
}
|
|
124967
124967
|
return rangeStartPositionsAreOnSameLine(parentNode, firstChild, currentSourceFile) ? 0 : 1;
|
|
124968
124968
|
}
|
|
124969
|
-
if (synthesizedNodeStartsOnNewLine(firstChild,
|
|
124969
|
+
if (synthesizedNodeStartsOnNewLine(firstChild, format2)) {
|
|
124970
124970
|
return 1;
|
|
124971
124971
|
}
|
|
124972
124972
|
}
|
|
124973
|
-
return
|
|
124973
|
+
return format2 & 1 ? 1 : 0;
|
|
124974
124974
|
}
|
|
124975
|
-
function getSeparatingLineTerminatorCount(previousNode, nextNode,
|
|
124976
|
-
if (
|
|
124975
|
+
function getSeparatingLineTerminatorCount(previousNode, nextNode, format2) {
|
|
124976
|
+
if (format2 & 2 || preserveSourceNewlines) {
|
|
124977
124977
|
if (previousNode === void 0 || nextNode === void 0) {
|
|
124978
124978
|
return 0;
|
|
124979
124979
|
}
|
|
@@ -124992,18 +124992,18 @@ ${lanes.join("\n")}
|
|
|
124992
124992
|
} else if (!preserveSourceNewlines && originalNodesHaveSameParent(previousNode, nextNode)) {
|
|
124993
124993
|
return rangeEndIsOnSameLineAsRangeStart(previousNode, nextNode, currentSourceFile) ? 0 : 1;
|
|
124994
124994
|
}
|
|
124995
|
-
return
|
|
124996
|
-
} else if (synthesizedNodeStartsOnNewLine(previousNode,
|
|
124995
|
+
return format2 & 65536 ? 1 : 0;
|
|
124996
|
+
} else if (synthesizedNodeStartsOnNewLine(previousNode, format2) || synthesizedNodeStartsOnNewLine(nextNode, format2)) {
|
|
124997
124997
|
return 1;
|
|
124998
124998
|
}
|
|
124999
124999
|
} else if (getStartsOnNewLine(nextNode)) {
|
|
125000
125000
|
return 1;
|
|
125001
125001
|
}
|
|
125002
|
-
return
|
|
125002
|
+
return format2 & 1 ? 1 : 0;
|
|
125003
125003
|
}
|
|
125004
|
-
function getClosingLineTerminatorCount(parentNode, lastChild,
|
|
125005
|
-
if (
|
|
125006
|
-
if (
|
|
125004
|
+
function getClosingLineTerminatorCount(parentNode, lastChild, format2, childrenTextRange) {
|
|
125005
|
+
if (format2 & 2 || preserveSourceNewlines) {
|
|
125006
|
+
if (format2 & 65536) {
|
|
125007
125007
|
return 1;
|
|
125008
125008
|
}
|
|
125009
125009
|
if (lastChild === void 0) {
|
|
@@ -125023,11 +125023,11 @@ ${lanes.join("\n")}
|
|
|
125023
125023
|
}
|
|
125024
125024
|
return rangeEndPositionsAreOnSameLine(parentNode, lastChild, currentSourceFile) ? 0 : 1;
|
|
125025
125025
|
}
|
|
125026
|
-
if (synthesizedNodeStartsOnNewLine(lastChild,
|
|
125026
|
+
if (synthesizedNodeStartsOnNewLine(lastChild, format2)) {
|
|
125027
125027
|
return 1;
|
|
125028
125028
|
}
|
|
125029
125029
|
}
|
|
125030
|
-
if (
|
|
125030
|
+
if (format2 & 1 && !(format2 & 131072)) {
|
|
125031
125031
|
return 1;
|
|
125032
125032
|
}
|
|
125033
125033
|
return 0;
|
|
@@ -125074,15 +125074,15 @@ ${lanes.join("\n")}
|
|
|
125074
125074
|
writeLine(trailingNewlines);
|
|
125075
125075
|
}
|
|
125076
125076
|
}
|
|
125077
|
-
function synthesizedNodeStartsOnNewLine(node,
|
|
125077
|
+
function synthesizedNodeStartsOnNewLine(node, format2) {
|
|
125078
125078
|
if (nodeIsSynthesized(node)) {
|
|
125079
125079
|
const startsOnNewLine = getStartsOnNewLine(node);
|
|
125080
125080
|
if (startsOnNewLine === void 0) {
|
|
125081
|
-
return (
|
|
125081
|
+
return (format2 & 65536) !== 0;
|
|
125082
125082
|
}
|
|
125083
125083
|
return startsOnNewLine;
|
|
125084
125084
|
}
|
|
125085
|
-
return (
|
|
125085
|
+
return (format2 & 65536) !== 0;
|
|
125086
125086
|
}
|
|
125087
125087
|
function getLinesBetweenNodes(parent2, node1, node2) {
|
|
125088
125088
|
if (getEmitFlags(parent2) & 262144) {
|
|
@@ -126094,15 +126094,15 @@ ${lanes.join("\n")}
|
|
|
126094
126094
|
] = ["[", "]"];
|
|
126095
126095
|
return brackets2;
|
|
126096
126096
|
}
|
|
126097
|
-
function getOpeningBracket(
|
|
126097
|
+
function getOpeningBracket(format2) {
|
|
126098
126098
|
return brackets[
|
|
126099
|
-
|
|
126099
|
+
format2 & 15360
|
|
126100
126100
|
/* BracketsMask */
|
|
126101
126101
|
][0];
|
|
126102
126102
|
}
|
|
126103
|
-
function getClosingBracket(
|
|
126103
|
+
function getClosingBracket(format2) {
|
|
126104
126104
|
return brackets[
|
|
126105
|
-
|
|
126105
|
+
format2 & 15360
|
|
126106
126106
|
/* BracketsMask */
|
|
126107
126107
|
][1];
|
|
126108
126108
|
}
|
|
@@ -151877,18 +151877,18 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
151877
151877
|
function getNavigationTree2(fileName) {
|
|
151878
151878
|
return getNavigationTree(syntaxTreeCache.getCurrentSourceFile(fileName), cancellationToken);
|
|
151879
151879
|
}
|
|
151880
|
-
function getSemanticClassifications3(fileName, span,
|
|
151880
|
+
function getSemanticClassifications3(fileName, span, format2) {
|
|
151881
151881
|
synchronizeHostData();
|
|
151882
|
-
const responseFormat =
|
|
151882
|
+
const responseFormat = format2 || "original";
|
|
151883
151883
|
if (responseFormat === "2020") {
|
|
151884
151884
|
return getSemanticClassifications2(program, cancellationToken, getValidSourceFile(fileName), span);
|
|
151885
151885
|
} else {
|
|
151886
151886
|
return getSemanticClassifications(program.getTypeChecker(), cancellationToken, getValidSourceFile(fileName), program.getClassifiableNames(), span);
|
|
151887
151887
|
}
|
|
151888
151888
|
}
|
|
151889
|
-
function getEncodedSemanticClassifications3(fileName, span,
|
|
151889
|
+
function getEncodedSemanticClassifications3(fileName, span, format2) {
|
|
151890
151890
|
synchronizeHostData();
|
|
151891
|
-
const responseFormat =
|
|
151891
|
+
const responseFormat = format2 || "original";
|
|
151892
151892
|
if (responseFormat === "original") {
|
|
151893
151893
|
return getEncodedSemanticClassifications(program.getTypeChecker(), cancellationToken, getValidSourceFile(fileName), program.getClassifiableNames(), span);
|
|
151894
151894
|
} else {
|
|
@@ -167116,18 +167116,18 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167116
167116
|
isAbstract
|
|
167117
167117
|
);
|
|
167118
167118
|
if (completionNodes.length) {
|
|
167119
|
-
const
|
|
167119
|
+
const format2 = 1 | 131072;
|
|
167120
167120
|
replacementSpan = modifiersSpan;
|
|
167121
167121
|
if (formatContext) {
|
|
167122
167122
|
insertText = printer.printAndFormatSnippetList(
|
|
167123
|
-
|
|
167123
|
+
format2,
|
|
167124
167124
|
factory.createNodeArray(completionNodes),
|
|
167125
167125
|
sourceFile,
|
|
167126
167126
|
formatContext
|
|
167127
167127
|
);
|
|
167128
167128
|
} else {
|
|
167129
167129
|
insertText = printer.printSnippetList(
|
|
167130
|
-
|
|
167130
|
+
format2,
|
|
167131
167131
|
factory.createNodeArray(completionNodes),
|
|
167132
167132
|
sourceFile
|
|
167133
167133
|
);
|
|
@@ -167342,20 +167342,20 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
167342
167342
|
write();
|
|
167343
167343
|
}
|
|
167344
167344
|
}
|
|
167345
|
-
function printSnippetList(
|
|
167346
|
-
const unescaped = printUnescapedSnippetList(
|
|
167345
|
+
function printSnippetList(format2, list, sourceFile) {
|
|
167346
|
+
const unescaped = printUnescapedSnippetList(format2, list, sourceFile);
|
|
167347
167347
|
return escapes ? ts_textChanges_exports.applyChanges(unescaped, escapes) : unescaped;
|
|
167348
167348
|
}
|
|
167349
|
-
function printUnescapedSnippetList(
|
|
167349
|
+
function printUnescapedSnippetList(format2, list, sourceFile) {
|
|
167350
167350
|
escapes = void 0;
|
|
167351
167351
|
writer.clear();
|
|
167352
|
-
printer.writeList(
|
|
167352
|
+
printer.writeList(format2, list, sourceFile, writer);
|
|
167353
167353
|
return writer.getText();
|
|
167354
167354
|
}
|
|
167355
|
-
function printAndFormatSnippetList(
|
|
167355
|
+
function printAndFormatSnippetList(format2, list, sourceFile, formatContext) {
|
|
167356
167356
|
const syntheticFile = {
|
|
167357
167357
|
text: printUnescapedSnippetList(
|
|
167358
|
-
|
|
167358
|
+
format2,
|
|
167359
167359
|
list,
|
|
167360
167360
|
sourceFile
|
|
167361
167361
|
),
|
|
@@ -178784,8 +178784,8 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
178784
178784
|
return change.text;
|
|
178785
178785
|
}
|
|
178786
178786
|
const { options = {}, range: { pos } } = change;
|
|
178787
|
-
const
|
|
178788
|
-
const text = change.kind === 2 ? change.nodes.map((n) => removeSuffix(
|
|
178787
|
+
const format2 = (n) => getFormattedTextOfNode(n, targetSourceFile, sourceFile, pos, options, newLineCharacter, formatContext, validate);
|
|
178788
|
+
const text = change.kind === 2 ? change.nodes.map((n) => removeSuffix(format2(n), newLineCharacter)).join(((_a = change.options) == null ? void 0 : _a.joiner) || newLineCharacter) : format2(change.node);
|
|
178789
178789
|
const noIndent = options.indentation !== void 0 || getLineStartPositionForPosition(pos, targetSourceFile) === pos ? text : text.replace(/^\s+/, "");
|
|
178790
178790
|
return (options.prefix || "") + noIndent + (!options.suffix || endsWith(noIndent, options.suffix) ? "" : options.suffix);
|
|
178791
178791
|
}
|
|
@@ -186637,6 +186637,7 @@ var import_js = require("@nx/js");
|
|
|
186637
186637
|
var import_fs_extra = require("fs-extra");
|
|
186638
186638
|
var import_project_graph = require("nx/src/project-graph/project-graph");
|
|
186639
186639
|
var import_fileutils = require("nx/src/utils/fileutils");
|
|
186640
|
+
var import_prettier = require("prettier");
|
|
186640
186641
|
var import_tsup2 = require("tsup");
|
|
186641
186642
|
|
|
186642
186643
|
// packages/workspace-tools/src/utils/get-workspace-root.ts
|
|
@@ -186676,7 +186677,6 @@ async function stormInitGenerator(tree, schema) {
|
|
|
186676
186677
|
{
|
|
186677
186678
|
"nx": nxVersion,
|
|
186678
186679
|
"@nx/workspace": nxVersion,
|
|
186679
|
-
"terser": "^5.24.0",
|
|
186680
186680
|
"@storm-software/testing-tools": "latest",
|
|
186681
186681
|
"@storm-software/git-tools": "latest",
|
|
186682
186682
|
"@storm-software/linting-tools": "latest"
|
package/meta.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytes":284,"imports":[{"path":"nx/src/utils/find-workspace-root.js","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/utils/apply-workspace-tokens.ts":{"bytes":1465,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/get-workspace-root.ts","kind":"import-statement","original":"./get-workspace-root"}],"format":"esm"},"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytes":2300,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"esbuild","kind":"import-statement","external":true},{"path":"tsup","kind":"import-statement","external":true},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/executors/tsup/executor.ts":{"bytes":7833,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@nx/esbuild/src/executors/esbuild/lib/get-extra-dependencies","kind":"import-statement","external":true},{"path":"@nx/js","kind":"import-statement","external":true},{"path":"@nx/js/src/utils/buildable-libs-utils","kind":"import-statement","external":true},{"path":"fs","kind":"import-statement","external":true},{"path":"fs-extra","kind":"import-statement","external":true},{"path":"nx/src/project-graph/project-graph","kind":"import-statement","external":true},{"path":"nx/src/utils/fileutils","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"tsup","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/apply-workspace-tokens.ts","kind":"import-statement","original":"../../utils/apply-workspace-tokens"},{"path":"packages/workspace-tools/src/utils/get-workspace-root.ts","kind":"import-statement","original":"../../utils/get-workspace-root"},{"path":"packages/workspace-tools/src/executors/tsup/get-config.ts","kind":"import-statement","original":"./get-config"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/executors/tsup/schema.d.ts":{"bytes":457,"imports":[{"path":"@nx/esbuild/src/executors/esbuild/schema.d.ts","kind":"import-statement","external":true},{"path":"tsup","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/utils/versions.ts":{"bytes":745,"imports":[],"format":"esm"},"packages/workspace-tools/src/generators/init/init.ts":{"bytes":657,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/generators/init/schema.d.ts":{"bytes":52,"imports":[],"format":"esm"},"packages/workspace-tools/src/generators/node-library/normalize-options.ts":{"bytes":2028,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@nx/devkit/src/generators/project-name-and-root-utils","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/library/library","kind":"import-statement","external":true},{"path":"@nx/js/src/utils/schema","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js":{"bytes":225,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js":{"bytes":1540,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js":{"bytes":4714,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js","kind":"require-call","original":"./base64"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js":{"bytes":12950,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js":{"bytes":3197,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js":{"bytes":2339,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js":{"bytes":14356,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js","kind":"require-call","original":"./base64-vlq"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js","kind":"require-call","original":"./array-set"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js","kind":"require-call","original":"./mapping-list"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js":{"bytes":4249,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js":{"bytes":3616,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js":{"bytes":40562,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js","kind":"require-call","original":"./binary-search"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js","kind":"require-call","original":"./array-set"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js","kind":"require-call","original":"./base64-vlq"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js","kind":"require-call","original":"./quick-sort"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js":{"bytes":13808,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js","kind":"require-call","original":"./source-map-generator"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js":{"bytes":405,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js","kind":"require-call","original":"./lib/source-map-generator"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js","kind":"require-call","original":"./lib/source-map-consumer"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js","kind":"require-call","original":"./lib/source-node"}],"format":"cjs"},"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js":{"bytes":1675,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js":{"bytes":19729,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js","kind":"require-call","original":"source-map"},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js","kind":"require-call","original":"buffer-from"}],"format":"cjs"},"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js":{"bytes":8207497,"imports":[{"path":"perf_hooks","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"crypto","kind":"require-call","external":true},{"path":"buffer","kind":"require-call","external":true},{"path":"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js","kind":"require-call","original":"source-map-support"},{"path":"inspector","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js":{"bytes":27809,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js","kind":"require-call","original":"typescript"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js":{"bytes":12509,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js","kind":"require-call","original":"../../utils/flat-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"./flat-config/ast-utils"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json":{"bytes":1148,"imports":[]},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js":{"bytes":450,"imports":[{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json","kind":"require-call","original":"../../package.json"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js":{"bytes":4128,"imports":[{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"../utils/flat-config/ast-utils"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js":{"bytes":2722,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js","kind":"require-call","original":"../../utils/versions"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"../utils/eslint-file"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js","kind":"require-call","original":"./global-eslint-config"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js":{"bytes":5025,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"../utils/eslint-file"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js","kind":"require-call","original":"./global-eslint-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js","kind":"require-call","original":"../../utils/flat-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js","kind":"require-call","original":"../../utils/versions"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"../utils/flat-config/ast-utils"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js":{"bytes":8298,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"../utils/eslint-file"},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js","kind":"require-call","original":"../init/init"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js","kind":"require-call","original":"../init/init-migration"},{"path":"nx/src/generators/utils/project-configuration","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js","kind":"require-call","original":"../../utils/flat-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"../utils/flat-config/ast-utils"}],"format":"cjs"},"packages/workspace-tools/src/generators/node-library/generator.ts":{"bytes":10099,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@nx/js","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/init/init","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/library/library","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/setup-verdaccio/generator","kind":"import-statement","external":true},{"path":"nx/src/utils/package-json","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"packages/workspace-tools/src/generators/node-library/normalize-options.ts","kind":"import-statement","original":"./normalize-options"},{"path":"./schema","kind":"import-statement","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js","kind":"require-call","original":"@nx/eslint/src/generators/lint-project/lint-project"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"@nx/eslint/src/generators/utils/eslint-file"}],"format":"esm"},"packages/workspace-tools/src/generators/node-library/schema.d.ts":{"bytes":407,"imports":[{"path":"@nx/js/src/utils/schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/generators/preset/generator.ts":{"bytes":8685,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/generators/preset/schema.d.ts":{"bytes":355,"imports":[],"format":"esm"},"packages/workspace-tools/index.ts":{"bytes":438,"imports":[{"path":"packages/workspace-tools/src/executors/tsup/executor.ts","kind":"import-statement","original":"./src/executors/tsup/executor"},{"path":"packages/workspace-tools/src/executors/tsup/schema.d.ts","kind":"import-statement","original":"./src/executors/tsup/schema.d"},{"path":"packages/workspace-tools/src/generators/init/init.ts","kind":"import-statement","original":"./src/generators/init/init"},{"path":"packages/workspace-tools/src/generators/init/schema.d.ts","kind":"import-statement","original":"./src/generators/init/schema.d"},{"path":"packages/workspace-tools/src/generators/node-library/generator.ts","kind":"import-statement","original":"./src/generators/node-library/generator"},{"path":"packages/workspace-tools/src/generators/node-library/schema.d.ts","kind":"import-statement","original":"./src/generators/node-library/schema.d"},{"path":"packages/workspace-tools/src/generators/preset/generator.ts","kind":"import-statement","original":"./src/generators/preset/generator"},{"path":"packages/workspace-tools/src/generators/preset/schema.d.ts","kind":"import-statement","original":"./src/generators/preset/schema.d"},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"./src/utils/versions"}],"format":"esm"},"packages/workspace-tools/src/utils/index.ts":{"bytes":108,"imports":[{"path":"packages/workspace-tools/src/utils/apply-workspace-tokens.ts","kind":"import-statement","original":"./apply-workspace-tokens"},{"path":"packages/workspace-tools/src/utils/get-workspace-root.ts","kind":"import-statement","original":"./get-workspace-root"},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"./versions"}],"format":"esm"}},"outputs":{"dist/packages/workspace-tools/index.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"perf_hooks","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"crypto","kind":"require-call","external":true},{"path":"buffer","kind":"require-call","external":true},{"path":"inspector","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"nx/src/generators/utils/project-configuration","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/esbuild/src/executors/esbuild/lib/get-extra-dependencies","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"fs-extra","kind":"require-call","external":true},{"path":"nx/src/project-graph/project-graph","kind":"require-call","external":true},{"path":"nx/src/utils/fileutils","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true},{"path":"nx/src/utils/find-workspace-root.js","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"@nx/js/src/generators/init/init","kind":"require-call","external":true},{"path":"@nx/js/src/generators/setup-verdaccio/generator","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit/src/generators/project-name-and-root-utils","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/index.ts","inputs":{"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js":{"bytesInOutput":502},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js":{"bytesInOutput":1171},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js":{"bytesInOutput":1740},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js":{"bytesInOutput":8831},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js":{"bytesInOutput":2329},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js":{"bytesInOutput":1413},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js":{"bytesInOutput":10933},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js":{"bytesInOutput":1607},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js":{"bytesInOutput":991},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js":{"bytesInOutput":24560},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js":{"bytesInOutput":9850},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js":{"bytesInOutput":359},"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js":{"bytesInOutput":1904},"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js":{"bytesInOutput":15953},"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js":{"bytesInOutput":8625524},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js":{"bytesInOutput":24909},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js":{"bytesInOutput":12490},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json":{"bytesInOutput":1553},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js":{"bytesInOutput":715},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js":{"bytesInOutput":3880},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js":{"bytesInOutput":2836},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js":{"bytesInOutput":4630},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js":{"bytesInOutput":7633},"packages/workspace-tools/index.ts":{"bytesInOutput":995},"packages/workspace-tools/src/executors/tsup/executor.ts":{"bytesInOutput":399},"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytesInOutput":81},"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytesInOutput":78},"packages/workspace-tools/src/generators/init/init.ts":{"bytesInOutput":518},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":582},"packages/workspace-tools/src/generators/node-library/generator.ts":{"bytesInOutput":9036},"packages/workspace-tools/src/generators/node-library/normalize-options.ts":{"bytesInOutput":1778},"packages/workspace-tools/src/generators/preset/generator.ts":{"bytesInOutput":44}},"bytes":8786401},"dist/packages/workspace-tools/src/executors/tsup/executor.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/esbuild/src/executors/esbuild/lib/get-extra-dependencies","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs-extra","kind":"require-call","external":true},{"path":"nx/src/project-graph/project-graph","kind":"require-call","external":true},{"path":"nx/src/utils/fileutils","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true},{"path":"nx/src/utils/find-workspace-root.js","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/executors/tsup/executor.ts","inputs":{"packages/workspace-tools/src/executors/tsup/executor.ts":{"bytesInOutput":6981},"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytesInOutput":313},"packages/workspace-tools/src/utils/apply-workspace-tokens.ts":{"bytesInOutput":1134},"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytesInOutput":1697}},"bytes":11218},"dist/packages/workspace-tools/src/executors/tsup/get-config.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/executors/tsup/get-config.ts","inputs":{"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytesInOutput":1913}},"bytes":2895},"dist/packages/workspace-tools/src/generators/init/init.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/generators/init/init.ts","inputs":{"packages/workspace-tools/src/generators/init/init.ts":{"bytesInOutput":729},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":27}},"bytes":1818},"dist/packages/workspace-tools/src/generators/node-library/generator.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"perf_hooks","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"crypto","kind":"require-call","external":true},{"path":"buffer","kind":"require-call","external":true},{"path":"inspector","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"nx/src/generators/utils/project-configuration","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"@nx/js/src/generators/init/init","kind":"require-call","external":true},{"path":"@nx/js/src/generators/setup-verdaccio/generator","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit/src/generators/project-name-and-root-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/generators/node-library/generator.ts","inputs":{"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js":{"bytesInOutput":502},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js":{"bytesInOutput":1171},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js":{"bytesInOutput":1740},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js":{"bytesInOutput":8831},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js":{"bytesInOutput":2329},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js":{"bytesInOutput":1413},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js":{"bytesInOutput":10933},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js":{"bytesInOutput":1607},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js":{"bytesInOutput":991},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js":{"bytesInOutput":24560},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js":{"bytesInOutput":9850},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js":{"bytesInOutput":359},"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js":{"bytesInOutput":1904},"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js":{"bytesInOutput":15953},"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js":{"bytesInOutput":8625421},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js":{"bytesInOutput":24909},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js":{"bytesInOutput":12490},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json":{"bytesInOutput":1553},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js":{"bytesInOutput":715},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js":{"bytesInOutput":3880},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js":{"bytesInOutput":2836},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js":{"bytesInOutput":4630},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js":{"bytesInOutput":7633},"packages/workspace-tools/src/generators/node-library/generator.ts":{"bytesInOutput":9276},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":60},"packages/workspace-tools/src/generators/node-library/normalize-options.ts":{"bytesInOutput":1775}},"bytes":8783130},"dist/packages/workspace-tools/src/generators/preset/generator.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/generators/preset/generator.ts","inputs":{"packages/workspace-tools/src/generators/preset/generator.ts":{"bytesInOutput":8454},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":91}},"bytes":10106},"dist/packages/workspace-tools/src/utils/index.js":{"imports":[{"path":"nx/src/utils/find-workspace-root.js","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/utils/index.ts","inputs":{"packages/workspace-tools/src/utils/index.ts":{"bytesInOutput":961},"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytesInOutput":313},"packages/workspace-tools/src/utils/apply-workspace-tokens.ts":{"bytesInOutput":1134},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":582}},"bytes":4481}}}
|
|
1
|
+
{"inputs":{"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytes":284,"imports":[{"path":"nx/src/utils/find-workspace-root.js","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/utils/apply-workspace-tokens.ts":{"bytes":1465,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/get-workspace-root.ts","kind":"import-statement","original":"./get-workspace-root"}],"format":"esm"},"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytes":2315,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"esbuild","kind":"import-statement","external":true},{"path":"tsup","kind":"import-statement","external":true},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/executors/tsup/executor.ts":{"bytes":8286,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@nx/esbuild/src/executors/esbuild/lib/get-extra-dependencies","kind":"import-statement","external":true},{"path":"@nx/js","kind":"import-statement","external":true},{"path":"@nx/js/src/utils/buildable-libs-utils","kind":"import-statement","external":true},{"path":"fs","kind":"import-statement","external":true},{"path":"fs-extra","kind":"import-statement","external":true},{"path":"nx/src/project-graph/project-graph","kind":"import-statement","external":true},{"path":"nx/src/utils/fileutils","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"prettier","kind":"import-statement","external":true},{"path":"tsup","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/apply-workspace-tokens.ts","kind":"import-statement","original":"../../utils/apply-workspace-tokens"},{"path":"packages/workspace-tools/src/utils/get-workspace-root.ts","kind":"import-statement","original":"../../utils/get-workspace-root"},{"path":"packages/workspace-tools/src/executors/tsup/get-config.ts","kind":"import-statement","original":"./get-config"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/executors/tsup/schema.d.ts":{"bytes":457,"imports":[{"path":"@nx/esbuild/src/executors/esbuild/schema.d.ts","kind":"import-statement","external":true},{"path":"tsup","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/utils/versions.ts":{"bytes":745,"imports":[],"format":"esm"},"packages/workspace-tools/src/generators/init/init.ts":{"bytes":630,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/generators/init/schema.d.ts":{"bytes":52,"imports":[],"format":"esm"},"packages/workspace-tools/src/generators/node-library/normalize-options.ts":{"bytes":2028,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@nx/devkit/src/generators/project-name-and-root-utils","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/library/library","kind":"import-statement","external":true},{"path":"@nx/js/src/utils/schema","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js":{"bytes":225,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js":{"bytes":1540,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js":{"bytes":4714,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js","kind":"require-call","original":"./base64"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js":{"bytes":12950,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js":{"bytes":3197,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js":{"bytes":2339,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js":{"bytes":14356,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js","kind":"require-call","original":"./base64-vlq"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js","kind":"require-call","original":"./array-set"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js","kind":"require-call","original":"./mapping-list"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js":{"bytes":4249,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js":{"bytes":3616,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js":{"bytes":40562,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js","kind":"require-call","original":"./binary-search"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js","kind":"require-call","original":"./array-set"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js","kind":"require-call","original":"./base64-vlq"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js","kind":"require-call","original":"./quick-sort"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js":{"bytes":13808,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js","kind":"require-call","original":"./source-map-generator"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js","kind":"require-call","original":"./util"}],"format":"cjs"},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js":{"bytes":405,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js","kind":"require-call","original":"./lib/source-map-generator"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js","kind":"require-call","original":"./lib/source-map-consumer"},{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js","kind":"require-call","original":"./lib/source-node"}],"format":"cjs"},"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js":{"bytes":1675,"imports":[],"format":"cjs"},"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js":{"bytes":19729,"imports":[{"path":"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js","kind":"require-call","original":"source-map"},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js","kind":"require-call","original":"buffer-from"}],"format":"cjs"},"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js":{"bytes":8207497,"imports":[{"path":"perf_hooks","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"crypto","kind":"require-call","external":true},{"path":"buffer","kind":"require-call","external":true},{"path":"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js","kind":"require-call","original":"source-map-support"},{"path":"inspector","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js":{"bytes":27809,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js","kind":"require-call","original":"typescript"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js":{"bytes":12509,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js","kind":"require-call","original":"../../utils/flat-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"./flat-config/ast-utils"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json":{"bytes":1148,"imports":[]},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js":{"bytes":450,"imports":[{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json","kind":"require-call","original":"../../package.json"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js":{"bytes":4128,"imports":[{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"../utils/flat-config/ast-utils"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js":{"bytes":2722,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js","kind":"require-call","original":"../../utils/versions"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"../utils/eslint-file"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js","kind":"require-call","original":"./global-eslint-config"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js":{"bytes":5025,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"../utils/eslint-file"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js","kind":"require-call","original":"./global-eslint-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js","kind":"require-call","original":"../../utils/flat-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js","kind":"require-call","original":"../../utils/versions"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"../utils/flat-config/ast-utils"}],"format":"cjs"},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js":{"bytes":8298,"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"../utils/eslint-file"},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js","kind":"require-call","original":"../init/init"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js","kind":"require-call","original":"../init/init-migration"},{"path":"nx/src/generators/utils/project-configuration","kind":"require-call","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js","kind":"require-call","original":"../../utils/flat-config"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js","kind":"require-call","original":"../utils/flat-config/ast-utils"}],"format":"cjs"},"packages/workspace-tools/src/generators/node-library/generator.ts":{"bytes":10099,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@nx/js","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/init/init","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/library/library","kind":"import-statement","external":true},{"path":"@nx/js/src/generators/setup-verdaccio/generator","kind":"import-statement","external":true},{"path":"nx/src/utils/package-json","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"packages/workspace-tools/src/generators/node-library/normalize-options.ts","kind":"import-statement","original":"./normalize-options"},{"path":"./schema","kind":"import-statement","external":true},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js","kind":"require-call","original":"@nx/eslint/src/generators/lint-project/lint-project"},{"path":"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js","kind":"require-call","original":"@nx/eslint/src/generators/utils/eslint-file"}],"format":"esm"},"packages/workspace-tools/src/generators/node-library/schema.d.ts":{"bytes":407,"imports":[{"path":"@nx/js/src/utils/schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/generators/preset/generator.ts":{"bytes":8685,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"../../utils/versions"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/workspace-tools/src/generators/preset/schema.d.ts":{"bytes":355,"imports":[],"format":"esm"},"packages/workspace-tools/index.ts":{"bytes":438,"imports":[{"path":"packages/workspace-tools/src/executors/tsup/executor.ts","kind":"import-statement","original":"./src/executors/tsup/executor"},{"path":"packages/workspace-tools/src/executors/tsup/schema.d.ts","kind":"import-statement","original":"./src/executors/tsup/schema.d"},{"path":"packages/workspace-tools/src/generators/init/init.ts","kind":"import-statement","original":"./src/generators/init/init"},{"path":"packages/workspace-tools/src/generators/init/schema.d.ts","kind":"import-statement","original":"./src/generators/init/schema.d"},{"path":"packages/workspace-tools/src/generators/node-library/generator.ts","kind":"import-statement","original":"./src/generators/node-library/generator"},{"path":"packages/workspace-tools/src/generators/node-library/schema.d.ts","kind":"import-statement","original":"./src/generators/node-library/schema.d"},{"path":"packages/workspace-tools/src/generators/preset/generator.ts","kind":"import-statement","original":"./src/generators/preset/generator"},{"path":"packages/workspace-tools/src/generators/preset/schema.d.ts","kind":"import-statement","original":"./src/generators/preset/schema.d"},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"./src/utils/versions"}],"format":"esm"},"packages/workspace-tools/src/utils/index.ts":{"bytes":108,"imports":[{"path":"packages/workspace-tools/src/utils/apply-workspace-tokens.ts","kind":"import-statement","original":"./apply-workspace-tokens"},{"path":"packages/workspace-tools/src/utils/get-workspace-root.ts","kind":"import-statement","original":"./get-workspace-root"},{"path":"packages/workspace-tools/src/utils/versions.ts","kind":"import-statement","original":"./versions"}],"format":"esm"}},"outputs":{"dist/packages/workspace-tools/index.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"perf_hooks","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"crypto","kind":"require-call","external":true},{"path":"buffer","kind":"require-call","external":true},{"path":"inspector","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"nx/src/generators/utils/project-configuration","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/esbuild/src/executors/esbuild/lib/get-extra-dependencies","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"fs-extra","kind":"require-call","external":true},{"path":"nx/src/project-graph/project-graph","kind":"require-call","external":true},{"path":"nx/src/utils/fileutils","kind":"require-call","external":true},{"path":"prettier","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true},{"path":"nx/src/utils/find-workspace-root.js","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"@nx/js/src/generators/init/init","kind":"require-call","external":true},{"path":"@nx/js/src/generators/setup-verdaccio/generator","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit/src/generators/project-name-and-root-utils","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/index.ts","inputs":{"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js":{"bytesInOutput":502},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js":{"bytesInOutput":1171},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js":{"bytesInOutput":1740},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js":{"bytesInOutput":8831},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js":{"bytesInOutput":2329},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js":{"bytesInOutput":1413},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js":{"bytesInOutput":10933},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js":{"bytesInOutput":1607},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js":{"bytesInOutput":991},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js":{"bytesInOutput":24560},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js":{"bytesInOutput":9850},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js":{"bytesInOutput":359},"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js":{"bytesInOutput":1904},"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js":{"bytesInOutput":15953},"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js":{"bytesInOutput":8625612},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js":{"bytesInOutput":24909},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js":{"bytesInOutput":12490},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json":{"bytesInOutput":1553},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js":{"bytesInOutput":715},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js":{"bytesInOutput":3880},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js":{"bytesInOutput":2836},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js":{"bytesInOutput":4630},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js":{"bytesInOutput":7633},"packages/workspace-tools/index.ts":{"bytesInOutput":995},"packages/workspace-tools/src/executors/tsup/executor.ts":{"bytesInOutput":442},"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytesInOutput":81},"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytesInOutput":78},"packages/workspace-tools/src/generators/init/init.ts":{"bytesInOutput":491},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":582},"packages/workspace-tools/src/generators/node-library/generator.ts":{"bytesInOutput":9036},"packages/workspace-tools/src/generators/node-library/normalize-options.ts":{"bytesInOutput":1778},"packages/workspace-tools/src/generators/preset/generator.ts":{"bytesInOutput":44}},"bytes":8786505},"dist/packages/workspace-tools/src/executors/tsup/executor.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/esbuild/src/executors/esbuild/lib/get-extra-dependencies","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs-extra","kind":"require-call","external":true},{"path":"nx/src/project-graph/project-graph","kind":"require-call","external":true},{"path":"nx/src/utils/fileutils","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"prettier","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true},{"path":"nx/src/utils/find-workspace-root.js","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/executors/tsup/executor.ts","inputs":{"packages/workspace-tools/src/executors/tsup/executor.ts":{"bytesInOutput":7462},"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytesInOutput":313},"packages/workspace-tools/src/utils/apply-workspace-tokens.ts":{"bytesInOutput":1134},"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytesInOutput":1712}},"bytes":11714},"dist/packages/workspace-tools/src/executors/tsup/get-config.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"tsup","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/executors/tsup/get-config.ts","inputs":{"packages/workspace-tools/src/executors/tsup/get-config.ts":{"bytesInOutput":1928}},"bytes":2910},"dist/packages/workspace-tools/src/generators/init/init.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/generators/init/init.ts","inputs":{"packages/workspace-tools/src/generators/init/init.ts":{"bytesInOutput":702},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":27}},"bytes":1791},"dist/packages/workspace-tools/src/generators/node-library/generator.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"perf_hooks","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"crypto","kind":"require-call","external":true},{"path":"buffer","kind":"require-call","external":true},{"path":"inspector","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"nx/src/generators/utils/project-configuration","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/js","kind":"require-call","external":true},{"path":"@nx/js/src/generators/init/init","kind":"require-call","external":true},{"path":"@nx/js/src/generators/setup-verdaccio/generator","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@nx/devkit/src/generators/project-name-and-root-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/generators/node-library/generator.ts","inputs":{"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/flat-config.js":{"bytesInOutput":502},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js":{"bytesInOutput":1171},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js":{"bytesInOutput":1740},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js":{"bytesInOutput":8831},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js":{"bytesInOutput":2329},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js":{"bytesInOutput":1413},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js":{"bytesInOutput":10933},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js":{"bytesInOutput":1607},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js":{"bytesInOutput":991},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js":{"bytesInOutput":24560},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js":{"bytesInOutput":9850},"node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js":{"bytesInOutput":359},"node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from/index.js":{"bytesInOutput":1904},"node_modules/.pnpm/source-map-support@0.5.19/node_modules/source-map-support/source-map-support.js":{"bytesInOutput":15953},"node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/typescript.js":{"bytesInOutput":8625421},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js":{"bytesInOutput":24909},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/utils/eslint-file.js":{"bytesInOutput":12490},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/package.json":{"bytesInOutput":1553},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/utils/versions.js":{"bytesInOutput":715},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js":{"bytesInOutput":3880},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init.js":{"bytesInOutput":2836},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/init/init-migration.js":{"bytesInOutput":4630},"node_modules/.pnpm/@nx+eslint@17.0.3_@swc-node+register@1.6.8_@swc+core@1.3.96_@types+node@20.8.10_eslint@8.53.0_nx@17.0.3_verdaccio@5.27.0/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js":{"bytesInOutput":7633},"packages/workspace-tools/src/generators/node-library/generator.ts":{"bytesInOutput":9276},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":60},"packages/workspace-tools/src/generators/node-library/normalize-options.ts":{"bytesInOutput":1775}},"bytes":8783130},"dist/packages/workspace-tools/src/generators/preset/generator.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/generators/preset/generator.ts","inputs":{"packages/workspace-tools/src/generators/preset/generator.ts":{"bytesInOutput":8454},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":91}},"bytes":10106},"dist/packages/workspace-tools/src/utils/index.js":{"imports":[{"path":"nx/src/utils/find-workspace-root.js","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/workspace-tools/src/utils/index.ts","inputs":{"packages/workspace-tools/src/utils/index.ts":{"bytesInOutput":961},"packages/workspace-tools/src/utils/get-workspace-root.ts":{"bytesInOutput":313},"packages/workspace-tools/src/utils/apply-workspace-tokens.ts":{"bytesInOutput":1134},"packages/workspace-tools/src/utils/versions.ts":{"bytesInOutput":582}},"bytes":4481}}}
|
package/package.json
CHANGED
|
@@ -30,6 +30,7 @@ var import_fs_extra = require("fs-extra");
|
|
|
30
30
|
var import_project_graph = require("nx/src/project-graph/project-graph");
|
|
31
31
|
var import_fileutils = require("nx/src/utils/fileutils");
|
|
32
32
|
var import_path = require("path");
|
|
33
|
+
var import_prettier = require("prettier");
|
|
33
34
|
var import_tsup2 = require("tsup");
|
|
34
35
|
|
|
35
36
|
// packages/workspace-tools/src/utils/get-workspace-root.ts
|
|
@@ -98,7 +99,7 @@ function modernConfig(entry, outDir, tsconfig = "tsconfig.json", debug = false,
|
|
|
98
99
|
tsconfig,
|
|
99
100
|
outDir: (0, import_devkit.joinPathFragments)(outDir, "dist", "modern"),
|
|
100
101
|
metafile: true,
|
|
101
|
-
minify:
|
|
102
|
+
minify: false,
|
|
102
103
|
bundle,
|
|
103
104
|
platform,
|
|
104
105
|
dts: true,
|
|
@@ -116,7 +117,8 @@ function legacyConfig(entry, outDir, tsconfig = "tsconfig.json", debug = false,
|
|
|
116
117
|
tsconfig,
|
|
117
118
|
outDir: (0, import_devkit.joinPathFragments)(outDir, "dist", "legacy"),
|
|
118
119
|
metafile: true,
|
|
119
|
-
|
|
120
|
+
shims: true,
|
|
121
|
+
minify: false,
|
|
120
122
|
bundle,
|
|
121
123
|
platform,
|
|
122
124
|
dts: true,
|
|
@@ -278,7 +280,23 @@ async function runExecutor(options, context) {
|
|
|
278
280
|
outputPath,
|
|
279
281
|
"package.json"
|
|
280
282
|
);
|
|
281
|
-
(0, import_fs.writeFileSync)(
|
|
283
|
+
(0, import_fs.writeFileSync)(
|
|
284
|
+
packageJsonPath,
|
|
285
|
+
await (0, import_prettier.format)(JSON.stringify(packageJson), {
|
|
286
|
+
"plugins": ["prettier-plugin-packagejson"],
|
|
287
|
+
"trailingComma": "none",
|
|
288
|
+
"tabWidth": 2,
|
|
289
|
+
"semi": true,
|
|
290
|
+
"singleQuote": false,
|
|
291
|
+
"quoteProps": "preserve",
|
|
292
|
+
"insertPragma": false,
|
|
293
|
+
"bracketSameLine": true,
|
|
294
|
+
"printWidth": 80,
|
|
295
|
+
"bracketSpacing": true,
|
|
296
|
+
"arrowParens": "avoid",
|
|
297
|
+
"endOfLine": "lf"
|
|
298
|
+
})
|
|
299
|
+
);
|
|
282
300
|
console.log("Getting Tsup build config");
|
|
283
301
|
process.env["TSUP_PACKAGE_JSON_PATH"] = packageJsonPath;
|
|
284
302
|
const config = getConfig(sourceRoot, { ...options, outputPath });
|
|
@@ -44,7 +44,7 @@ function modernConfig(entry, outDir, tsconfig = "tsconfig.json", debug = false,
|
|
|
44
44
|
tsconfig,
|
|
45
45
|
outDir: (0, import_devkit.joinPathFragments)(outDir, "dist", "modern"),
|
|
46
46
|
metafile: true,
|
|
47
|
-
minify:
|
|
47
|
+
minify: false,
|
|
48
48
|
bundle,
|
|
49
49
|
platform,
|
|
50
50
|
dts: true,
|
|
@@ -62,7 +62,8 @@ function legacyConfig(entry, outDir, tsconfig = "tsconfig.json", debug = false,
|
|
|
62
62
|
tsconfig,
|
|
63
63
|
outDir: (0, import_devkit.joinPathFragments)(outDir, "dist", "legacy"),
|
|
64
64
|
metafile: true,
|
|
65
|
-
|
|
65
|
+
shims: true,
|
|
66
|
+
minify: false,
|
|
66
67
|
bundle,
|
|
67
68
|
platform,
|
|
68
69
|
dts: true,
|
|
@@ -35,7 +35,6 @@ async function stormInitGenerator(tree, schema) {
|
|
|
35
35
|
{
|
|
36
36
|
"nx": nxVersion,
|
|
37
37
|
"@nx/workspace": nxVersion,
|
|
38
|
-
"terser": "^5.24.0",
|
|
39
38
|
"@storm-software/testing-tools": "latest",
|
|
40
39
|
"@storm-software/git-tools": "latest",
|
|
41
40
|
"@storm-software/linting-tools": "latest"
|