@storm-software/workspace-tools 1.50.1 → 1.50.2
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 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup-browser/executor.js +2 -2
- package/src/executors/tsup-neutral/executor.js +2 -2
- package/src/executors/tsup-node/executor.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.50.2 (2024-01-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Added optional checking to external dependencies tracking ([5e414907](https://github.com/storm-software/storm-ops/commit/5e414907))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.50.1 (2024-01-26)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -139340,7 +139340,7 @@ ${Object.keys(options).map(
|
|
|
139340
139340
|
context.projectName,
|
|
139341
139341
|
context.projectGraph
|
|
139342
139342
|
)) {
|
|
139343
|
-
const packageConfig = thirdPartyDependency
|
|
139343
|
+
const packageConfig = thirdPartyDependency?.node?.data;
|
|
139344
139344
|
if (packageConfig?.packageName && config?.externalPackagePatterns?.some(
|
|
139345
139345
|
(pattern) => pattern.includes(packageConfig.packageName)
|
|
139346
139346
|
) && !externalDependencies?.some(
|
|
@@ -139408,7 +139408,7 @@ ${externalDependencies.map((dep) => {
|
|
|
139408
139408
|
const projectGraph = (0, import_devkit4.readCachedProjectGraph)();
|
|
139409
139409
|
packageJson.dependencies = void 0;
|
|
139410
139410
|
for (const externalDependency of externalDependencies) {
|
|
139411
|
-
const packageConfig = externalDependency
|
|
139411
|
+
const packageConfig = externalDependency?.node?.data;
|
|
139412
139412
|
if (packageConfig?.packageName && !!(projectGraph.externalNodes[externalDependency.node.name]?.type === "npm")) {
|
|
139413
139413
|
const { packageName, version } = packageConfig;
|
|
139414
139414
|
if (!workspacePackageJson.dependencies?.[packageName] && !workspacePackageJson.devDependencies?.[packageName] && !packageJson?.devDependencies?.[packageName]) {
|