@storm-software/workspace-tools 1.49.29 → 1.49.31
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 +2 -18
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -18
- package/src/executors/tsup-browser/executor.js +2 -18
- package/src/executors/tsup-neutral/executor.js +2 -18
- package/src/executors/tsup-node/executor.js +2 -18
package/package.json
CHANGED
|
@@ -115889,19 +115889,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115889
115889
|
}
|
|
115890
115890
|
await Promise.all(
|
|
115891
115891
|
entryPoints.map((entryPoint) => {
|
|
115892
|
-
|
|
115893
|
-
if (outputPath.startsWith(".")) {
|
|
115894
|
-
outputPath = outputPath.substring(1);
|
|
115895
|
-
}
|
|
115896
|
-
if (outputPath.startsWith("/")) {
|
|
115897
|
-
outputPath = outputPath.substring(1);
|
|
115898
|
-
}
|
|
115899
|
-
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115900
|
-
options.outputPath,
|
|
115901
|
-
"dist",
|
|
115902
|
-
outputPath.includes("/") ? outputPath.substring(0, outputPath.lastIndexOf("/")) : ""
|
|
115903
|
-
);
|
|
115904
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115892
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115905
115893
|
return runTsupBuild(
|
|
115906
115894
|
{
|
|
115907
115895
|
main: entryPoint,
|
|
@@ -115910,11 +115898,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115910
115898
|
sourceRoot
|
|
115911
115899
|
},
|
|
115912
115900
|
config,
|
|
115913
|
-
|
|
115914
|
-
...options,
|
|
115915
|
-
outputPath,
|
|
115916
|
-
getConfig: options.getConfig
|
|
115917
|
-
}
|
|
115901
|
+
options
|
|
115918
115902
|
);
|
|
115919
115903
|
})
|
|
115920
115904
|
);
|
|
@@ -115919,19 +115919,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115919
115919
|
}
|
|
115920
115920
|
await Promise.all(
|
|
115921
115921
|
entryPoints.map((entryPoint) => {
|
|
115922
|
-
|
|
115923
|
-
if (outputPath.startsWith(".")) {
|
|
115924
|
-
outputPath = outputPath.substring(1);
|
|
115925
|
-
}
|
|
115926
|
-
if (outputPath.startsWith("/")) {
|
|
115927
|
-
outputPath = outputPath.substring(1);
|
|
115928
|
-
}
|
|
115929
|
-
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115930
|
-
options.outputPath,
|
|
115931
|
-
"dist",
|
|
115932
|
-
outputPath.includes("/") ? outputPath.substring(0, outputPath.lastIndexOf("/")) : ""
|
|
115933
|
-
);
|
|
115934
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115922
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115935
115923
|
return runTsupBuild(
|
|
115936
115924
|
{
|
|
115937
115925
|
main: entryPoint,
|
|
@@ -115940,11 +115928,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115940
115928
|
sourceRoot
|
|
115941
115929
|
},
|
|
115942
115930
|
config,
|
|
115943
|
-
|
|
115944
|
-
...options,
|
|
115945
|
-
outputPath,
|
|
115946
|
-
getConfig: options.getConfig
|
|
115947
|
-
}
|
|
115931
|
+
options
|
|
115948
115932
|
);
|
|
115949
115933
|
})
|
|
115950
115934
|
);
|
|
@@ -115919,19 +115919,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115919
115919
|
}
|
|
115920
115920
|
await Promise.all(
|
|
115921
115921
|
entryPoints.map((entryPoint) => {
|
|
115922
|
-
|
|
115923
|
-
if (outputPath.startsWith(".")) {
|
|
115924
|
-
outputPath = outputPath.substring(1);
|
|
115925
|
-
}
|
|
115926
|
-
if (outputPath.startsWith("/")) {
|
|
115927
|
-
outputPath = outputPath.substring(1);
|
|
115928
|
-
}
|
|
115929
|
-
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115930
|
-
options.outputPath,
|
|
115931
|
-
"dist",
|
|
115932
|
-
outputPath.includes("/") ? outputPath.substring(0, outputPath.lastIndexOf("/")) : ""
|
|
115933
|
-
);
|
|
115934
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115922
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115935
115923
|
return runTsupBuild(
|
|
115936
115924
|
{
|
|
115937
115925
|
main: entryPoint,
|
|
@@ -115940,11 +115928,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115940
115928
|
sourceRoot
|
|
115941
115929
|
},
|
|
115942
115930
|
config,
|
|
115943
|
-
|
|
115944
|
-
...options,
|
|
115945
|
-
outputPath,
|
|
115946
|
-
getConfig: options.getConfig
|
|
115947
|
-
}
|
|
115931
|
+
options
|
|
115948
115932
|
);
|
|
115949
115933
|
})
|
|
115950
115934
|
);
|
|
@@ -115919,19 +115919,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115919
115919
|
}
|
|
115920
115920
|
await Promise.all(
|
|
115921
115921
|
entryPoints.map((entryPoint) => {
|
|
115922
|
-
|
|
115923
|
-
if (outputPath.startsWith(".")) {
|
|
115924
|
-
outputPath = outputPath.substring(1);
|
|
115925
|
-
}
|
|
115926
|
-
if (outputPath.startsWith("/")) {
|
|
115927
|
-
outputPath = outputPath.substring(1);
|
|
115928
|
-
}
|
|
115929
|
-
outputPath = (0, import_devkit3.joinPathFragments)(
|
|
115930
|
-
options.outputPath,
|
|
115931
|
-
"dist",
|
|
115932
|
-
outputPath.includes("/") ? outputPath.substring(0, outputPath.lastIndexOf("/")) : ""
|
|
115933
|
-
);
|
|
115934
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115922
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115935
115923
|
return runTsupBuild(
|
|
115936
115924
|
{
|
|
115937
115925
|
main: entryPoint,
|
|
@@ -115940,11 +115928,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115940
115928
|
sourceRoot
|
|
115941
115929
|
},
|
|
115942
115930
|
config,
|
|
115943
|
-
|
|
115944
|
-
...options,
|
|
115945
|
-
outputPath,
|
|
115946
|
-
getConfig: options.getConfig
|
|
115947
|
-
}
|
|
115931
|
+
options
|
|
115948
115932
|
);
|
|
115949
115933
|
})
|
|
115950
115934
|
);
|