@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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
## 1.50.3 (2024-01-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🩹 Fixes
|
|
7
|
+
|
|
8
|
+
- **workspace-tools:** Resolved issue with determining the external dependencies ([b436cea7](https://github.com/storm-software/storm-ops/commit/b436cea7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ❤️ Thank You
|
|
12
|
+
|
|
13
|
+
- Patrick Sullivan
|
|
14
|
+
|
|
1
15
|
## 1.50.2 (2024-01-26)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -139342,7 +139342,7 @@ ${Object.keys(options).map(
|
|
|
139342
139342
|
)) {
|
|
139343
139343
|
const packageConfig = thirdPartyDependency?.node?.data;
|
|
139344
139344
|
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
139345
|
-
(pattern) =>
|
|
139345
|
+
(pattern) => packageConfig.packageName.includes(pattern)
|
|
139346
139346
|
) && !externalDependencies?.some(
|
|
139347
139347
|
(externalDependency) => externalDependency.name.includes(packageConfig.packageName)
|
|
139348
139348
|
)) {
|
|
@@ -139542,9 +139542,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
139542
139542
|
);
|
|
139543
139543
|
}
|
|
139544
139544
|
await Promise.all(
|
|
139545
|
-
entryPoints.map(
|
|
139546
|
-
|
|
139547
|
-
return runTsupBuild(
|
|
139545
|
+
entryPoints.map(
|
|
139546
|
+
(entryPoint) => runTsupBuild(
|
|
139548
139547
|
{
|
|
139549
139548
|
main: entryPoint,
|
|
139550
139549
|
projectRoot,
|
|
@@ -139553,8 +139552,8 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
139553
139552
|
},
|
|
139554
139553
|
config,
|
|
139555
139554
|
options
|
|
139556
|
-
)
|
|
139557
|
-
|
|
139555
|
+
)
|
|
139556
|
+
)
|
|
139558
139557
|
);
|
|
139559
139558
|
writeSuccess(config, "\u26A1 The Build process has completed successfully");
|
|
139560
139559
|
return {
|