@storm-software/workspace-tools 1.50.0 → 1.50.1
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 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -4
- package/src/executors/tsup-browser/executor.js +2 -4
- package/src/executors/tsup-neutral/executor.js +2 -4
- package/src/executors/tsup-node/executor.js +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.50.1 (2024-01-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Fixed issue with incorrect external package logic ([a8e7a52a](https://github.com/storm-software/storm-ops/commit/a8e7a52a))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.50.0 (2024-01-26)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -139341,14 +139341,12 @@ ${Object.keys(options).map(
|
|
|
139341
139341
|
context.projectGraph
|
|
139342
139342
|
)) {
|
|
139343
139343
|
const packageConfig = thirdPartyDependency.node.data;
|
|
139344
|
-
if (packageConfig?.packageName &&
|
|
139344
|
+
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
139345
139345
|
(pattern) => pattern.includes(packageConfig.packageName)
|
|
139346
139346
|
) && !externalDependencies?.some(
|
|
139347
139347
|
(externalDependency) => externalDependency.name.includes(packageConfig.packageName)
|
|
139348
139348
|
)) {
|
|
139349
|
-
|
|
139350
|
-
externalDependencies.push(thirdPartyDependency);
|
|
139351
|
-
}
|
|
139349
|
+
externalDependencies.push(thirdPartyDependency);
|
|
139352
139350
|
}
|
|
139353
139351
|
}
|
|
139354
139352
|
writeTrace(
|