@storm-software/workspace-tools 1.49.15 → 1.49.17
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 +24 -0
- package/index.js +8 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +8 -6
- package/src/executors/tsup-browser/executor.js +8 -6
- package/src/executors/tsup-neutral/executor.js +8 -6
- package/src/executors/tsup-node/executor.js +8 -6
package/package.json
CHANGED
|
@@ -115864,7 +115864,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115864
115864
|
)
|
|
115865
115865
|
);
|
|
115866
115866
|
}
|
|
115867
|
-
Promise.all(
|
|
115867
|
+
await Promise.all(
|
|
115868
115868
|
entryPoints.map((entryPoint) => {
|
|
115869
115869
|
let outputPath = removeExtension(entryPoint).replace(sourceRoot, "");
|
|
115870
115870
|
if (outputPath.startsWith(".")) {
|
|
@@ -115873,6 +115873,12 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115873
115873
|
if (outputPath.startsWith("/")) {
|
|
115874
115874
|
outputPath = outputPath.substring(1);
|
|
115875
115875
|
}
|
|
115876
|
+
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115877
|
+
options.outputPath,
|
|
115878
|
+
"dist",
|
|
115879
|
+
outputPath.replace(findFileName(entryPoint), "")
|
|
115880
|
+
);
|
|
115881
|
+
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115876
115882
|
return runTsupBuild(
|
|
115877
115883
|
{
|
|
115878
115884
|
entry: entryPoint,
|
|
@@ -115883,11 +115889,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115883
115889
|
config,
|
|
115884
115890
|
{
|
|
115885
115891
|
...options,
|
|
115886
|
-
outputPath
|
|
115887
|
-
options.outputPath,
|
|
115888
|
-
"dist",
|
|
115889
|
-
outputPath.replace(findFileName(entryPoint), "")
|
|
115890
|
-
)
|
|
115892
|
+
outputPath
|
|
115891
115893
|
}
|
|
115892
115894
|
);
|
|
115893
115895
|
})
|
|
@@ -115894,7 +115894,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115894
115894
|
)
|
|
115895
115895
|
);
|
|
115896
115896
|
}
|
|
115897
|
-
Promise.all(
|
|
115897
|
+
await Promise.all(
|
|
115898
115898
|
entryPoints.map((entryPoint) => {
|
|
115899
115899
|
let outputPath = removeExtension(entryPoint).replace(sourceRoot, "");
|
|
115900
115900
|
if (outputPath.startsWith(".")) {
|
|
@@ -115903,6 +115903,12 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115903
115903
|
if (outputPath.startsWith("/")) {
|
|
115904
115904
|
outputPath = outputPath.substring(1);
|
|
115905
115905
|
}
|
|
115906
|
+
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115907
|
+
options.outputPath,
|
|
115908
|
+
"dist",
|
|
115909
|
+
outputPath.replace(findFileName(entryPoint), "")
|
|
115910
|
+
);
|
|
115911
|
+
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115906
115912
|
return runTsupBuild(
|
|
115907
115913
|
{
|
|
115908
115914
|
entry: entryPoint,
|
|
@@ -115913,11 +115919,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115913
115919
|
config,
|
|
115914
115920
|
{
|
|
115915
115921
|
...options,
|
|
115916
|
-
outputPath
|
|
115917
|
-
options.outputPath,
|
|
115918
|
-
"dist",
|
|
115919
|
-
outputPath.replace(findFileName(entryPoint), "")
|
|
115920
|
-
)
|
|
115922
|
+
outputPath
|
|
115921
115923
|
}
|
|
115922
115924
|
);
|
|
115923
115925
|
})
|
|
@@ -115894,7 +115894,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115894
115894
|
)
|
|
115895
115895
|
);
|
|
115896
115896
|
}
|
|
115897
|
-
Promise.all(
|
|
115897
|
+
await Promise.all(
|
|
115898
115898
|
entryPoints.map((entryPoint) => {
|
|
115899
115899
|
let outputPath = removeExtension(entryPoint).replace(sourceRoot, "");
|
|
115900
115900
|
if (outputPath.startsWith(".")) {
|
|
@@ -115903,6 +115903,12 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115903
115903
|
if (outputPath.startsWith("/")) {
|
|
115904
115904
|
outputPath = outputPath.substring(1);
|
|
115905
115905
|
}
|
|
115906
|
+
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115907
|
+
options.outputPath,
|
|
115908
|
+
"dist",
|
|
115909
|
+
outputPath.replace(findFileName(entryPoint), "")
|
|
115910
|
+
);
|
|
115911
|
+
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115906
115912
|
return runTsupBuild(
|
|
115907
115913
|
{
|
|
115908
115914
|
entry: entryPoint,
|
|
@@ -115913,11 +115919,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115913
115919
|
config,
|
|
115914
115920
|
{
|
|
115915
115921
|
...options,
|
|
115916
|
-
outputPath
|
|
115917
|
-
options.outputPath,
|
|
115918
|
-
"dist",
|
|
115919
|
-
outputPath.replace(findFileName(entryPoint), "")
|
|
115920
|
-
)
|
|
115922
|
+
outputPath
|
|
115921
115923
|
}
|
|
115922
115924
|
);
|
|
115923
115925
|
})
|
|
@@ -115894,7 +115894,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115894
115894
|
)
|
|
115895
115895
|
);
|
|
115896
115896
|
}
|
|
115897
|
-
Promise.all(
|
|
115897
|
+
await Promise.all(
|
|
115898
115898
|
entryPoints.map((entryPoint) => {
|
|
115899
115899
|
let outputPath = removeExtension(entryPoint).replace(sourceRoot, "");
|
|
115900
115900
|
if (outputPath.startsWith(".")) {
|
|
@@ -115903,6 +115903,12 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115903
115903
|
if (outputPath.startsWith("/")) {
|
|
115904
115904
|
outputPath = outputPath.substring(1);
|
|
115905
115905
|
}
|
|
115906
|
+
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115907
|
+
options.outputPath,
|
|
115908
|
+
"dist",
|
|
115909
|
+
outputPath.replace(findFileName(entryPoint), "")
|
|
115910
|
+
);
|
|
115911
|
+
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115906
115912
|
return runTsupBuild(
|
|
115907
115913
|
{
|
|
115908
115914
|
entry: entryPoint,
|
|
@@ -115913,11 +115919,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115913
115919
|
config,
|
|
115914
115920
|
{
|
|
115915
115921
|
...options,
|
|
115916
|
-
outputPath
|
|
115917
|
-
options.outputPath,
|
|
115918
|
-
"dist",
|
|
115919
|
-
outputPath.replace(findFileName(entryPoint), "")
|
|
115920
|
-
)
|
|
115922
|
+
outputPath
|
|
115921
115923
|
}
|
|
115922
115924
|
);
|
|
115923
115925
|
})
|