@storm-software/workspace-tools 1.50.2 → 1.50.4
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 +14 -0
- package/index.js +5 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +5 -6
- package/src/executors/tsup-browser/executor.js +5 -6
- package/src/executors/tsup-neutral/executor.js +5 -6
- package/src/executors/tsup-node/executor.js +5 -6
package/package.json
CHANGED
|
@@ -115693,7 +115693,7 @@ ${Object.keys(options).map(
|
|
|
115693
115693
|
)) {
|
|
115694
115694
|
const packageConfig = thirdPartyDependency?.node?.data;
|
|
115695
115695
|
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
115696
|
-
(pattern) =>
|
|
115696
|
+
(pattern) => packageConfig.packageName.includes(pattern)
|
|
115697
115697
|
) && !externalDependencies?.some(
|
|
115698
115698
|
(externalDependency) => externalDependency.name.includes(packageConfig.packageName)
|
|
115699
115699
|
)) {
|
|
@@ -115893,9 +115893,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115893
115893
|
);
|
|
115894
115894
|
}
|
|
115895
115895
|
await Promise.all(
|
|
115896
|
-
entryPoints.map(
|
|
115897
|
-
|
|
115898
|
-
return runTsupBuild(
|
|
115896
|
+
entryPoints.map(
|
|
115897
|
+
(entryPoint) => runTsupBuild(
|
|
115899
115898
|
{
|
|
115900
115899
|
main: entryPoint,
|
|
115901
115900
|
projectRoot,
|
|
@@ -115904,8 +115903,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115904
115903
|
},
|
|
115905
115904
|
config,
|
|
115906
115905
|
options
|
|
115907
|
-
)
|
|
115908
|
-
|
|
115906
|
+
)
|
|
115907
|
+
)
|
|
115909
115908
|
);
|
|
115910
115909
|
writeSuccess(config, "\u26A1 The Build process has completed successfully");
|
|
115911
115910
|
return {
|
|
@@ -115723,7 +115723,7 @@ ${Object.keys(options).map(
|
|
|
115723
115723
|
)) {
|
|
115724
115724
|
const packageConfig = thirdPartyDependency?.node?.data;
|
|
115725
115725
|
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
115726
|
-
(pattern) =>
|
|
115726
|
+
(pattern) => packageConfig.packageName.includes(pattern)
|
|
115727
115727
|
) && !externalDependencies?.some(
|
|
115728
115728
|
(externalDependency) => externalDependency.name.includes(packageConfig.packageName)
|
|
115729
115729
|
)) {
|
|
@@ -115923,9 +115923,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115923
115923
|
);
|
|
115924
115924
|
}
|
|
115925
115925
|
await Promise.all(
|
|
115926
|
-
entryPoints.map(
|
|
115927
|
-
|
|
115928
|
-
return runTsupBuild(
|
|
115926
|
+
entryPoints.map(
|
|
115927
|
+
(entryPoint) => runTsupBuild(
|
|
115929
115928
|
{
|
|
115930
115929
|
main: entryPoint,
|
|
115931
115930
|
projectRoot,
|
|
@@ -115934,8 +115933,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115934
115933
|
},
|
|
115935
115934
|
config,
|
|
115936
115935
|
options
|
|
115937
|
-
)
|
|
115938
|
-
|
|
115936
|
+
)
|
|
115937
|
+
)
|
|
115939
115938
|
);
|
|
115940
115939
|
writeSuccess(config, "\u26A1 The Build process has completed successfully");
|
|
115941
115940
|
return {
|
|
@@ -115723,7 +115723,7 @@ ${Object.keys(options).map(
|
|
|
115723
115723
|
)) {
|
|
115724
115724
|
const packageConfig = thirdPartyDependency?.node?.data;
|
|
115725
115725
|
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
115726
|
-
(pattern) =>
|
|
115726
|
+
(pattern) => packageConfig.packageName.includes(pattern)
|
|
115727
115727
|
) && !externalDependencies?.some(
|
|
115728
115728
|
(externalDependency) => externalDependency.name.includes(packageConfig.packageName)
|
|
115729
115729
|
)) {
|
|
@@ -115923,9 +115923,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115923
115923
|
);
|
|
115924
115924
|
}
|
|
115925
115925
|
await Promise.all(
|
|
115926
|
-
entryPoints.map(
|
|
115927
|
-
|
|
115928
|
-
return runTsupBuild(
|
|
115926
|
+
entryPoints.map(
|
|
115927
|
+
(entryPoint) => runTsupBuild(
|
|
115929
115928
|
{
|
|
115930
115929
|
main: entryPoint,
|
|
115931
115930
|
projectRoot,
|
|
@@ -115934,8 +115933,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115934
115933
|
},
|
|
115935
115934
|
config,
|
|
115936
115935
|
options
|
|
115937
|
-
)
|
|
115938
|
-
|
|
115936
|
+
)
|
|
115937
|
+
)
|
|
115939
115938
|
);
|
|
115940
115939
|
writeSuccess(config, "\u26A1 The Build process has completed successfully");
|
|
115941
115940
|
return {
|
|
@@ -115723,7 +115723,7 @@ ${Object.keys(options).map(
|
|
|
115723
115723
|
)) {
|
|
115724
115724
|
const packageConfig = thirdPartyDependency?.node?.data;
|
|
115725
115725
|
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
115726
|
-
(pattern) =>
|
|
115726
|
+
(pattern) => packageConfig.packageName.includes(pattern)
|
|
115727
115727
|
) && !externalDependencies?.some(
|
|
115728
115728
|
(externalDependency) => externalDependency.name.includes(packageConfig.packageName)
|
|
115729
115729
|
)) {
|
|
@@ -115923,9 +115923,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115923
115923
|
);
|
|
115924
115924
|
}
|
|
115925
115925
|
await Promise.all(
|
|
115926
|
-
entryPoints.map(
|
|
115927
|
-
|
|
115928
|
-
return runTsupBuild(
|
|
115926
|
+
entryPoints.map(
|
|
115927
|
+
(entryPoint) => runTsupBuild(
|
|
115929
115928
|
{
|
|
115930
115929
|
main: entryPoint,
|
|
115931
115930
|
projectRoot,
|
|
@@ -115934,8 +115933,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
115934
115933
|
},
|
|
115935
115934
|
config,
|
|
115936
115935
|
options
|
|
115937
|
-
)
|
|
115938
|
-
|
|
115936
|
+
)
|
|
115937
|
+
)
|
|
115939
115938
|
);
|
|
115940
115939
|
writeSuccess(config, "\u26A1 The Build process has completed successfully");
|
|
115941
115940
|
return {
|