@storm-software/workspace-tools 1.49.30 → 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 +12 -0
- package/index.js +2 -13
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -13
- package/src/executors/tsup-browser/executor.js +2 -13
- package/src/executors/tsup-neutral/executor.js +2 -13
- package/src/executors/tsup-node/executor.js +2 -13
package/package.json
CHANGED
|
@@ -115889,14 +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
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115892
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115900
115893
|
return runTsupBuild(
|
|
115901
115894
|
{
|
|
115902
115895
|
main: entryPoint,
|
|
@@ -115905,11 +115898,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115905
115898
|
sourceRoot
|
|
115906
115899
|
},
|
|
115907
115900
|
config,
|
|
115908
|
-
|
|
115909
|
-
...options,
|
|
115910
|
-
outputPath,
|
|
115911
|
-
getConfig: options.getConfig
|
|
115912
|
-
}
|
|
115901
|
+
options
|
|
115913
115902
|
);
|
|
115914
115903
|
})
|
|
115915
115904
|
);
|
|
@@ -115919,14 +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
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115922
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115930
115923
|
return runTsupBuild(
|
|
115931
115924
|
{
|
|
115932
115925
|
main: entryPoint,
|
|
@@ -115935,11 +115928,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115935
115928
|
sourceRoot
|
|
115936
115929
|
},
|
|
115937
115930
|
config,
|
|
115938
|
-
|
|
115939
|
-
...options,
|
|
115940
|
-
outputPath,
|
|
115941
|
-
getConfig: options.getConfig
|
|
115942
|
-
}
|
|
115931
|
+
options
|
|
115943
115932
|
);
|
|
115944
115933
|
})
|
|
115945
115934
|
);
|
|
@@ -115919,14 +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
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115922
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115930
115923
|
return runTsupBuild(
|
|
115931
115924
|
{
|
|
115932
115925
|
main: entryPoint,
|
|
@@ -115935,11 +115928,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115935
115928
|
sourceRoot
|
|
115936
115929
|
},
|
|
115937
115930
|
config,
|
|
115938
|
-
|
|
115939
|
-
...options,
|
|
115940
|
-
outputPath,
|
|
115941
|
-
getConfig: options.getConfig
|
|
115942
|
-
}
|
|
115931
|
+
options
|
|
115943
115932
|
);
|
|
115944
115933
|
})
|
|
115945
115934
|
);
|
|
@@ -115919,14 +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
|
-
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
115922
|
+
writeInfo(config, `*** Build output path: ${options.outputPath} ***`);
|
|
115930
115923
|
return runTsupBuild(
|
|
115931
115924
|
{
|
|
115932
115925
|
main: entryPoint,
|
|
@@ -115935,11 +115928,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115935
115928
|
sourceRoot
|
|
115936
115929
|
},
|
|
115937
115930
|
config,
|
|
115938
|
-
|
|
115939
|
-
...options,
|
|
115940
|
-
outputPath,
|
|
115941
|
-
getConfig: options.getConfig
|
|
115942
|
-
}
|
|
115931
|
+
options
|
|
115943
115932
|
);
|
|
115944
115933
|
})
|
|
115945
115934
|
);
|