@storm-software/workspace-tools 1.43.13 → 1.43.14
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 +7 -0
- package/index.js +3 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +3 -1
- package/src/executors/tsup-browser/executor.js +3 -1
- package/src/executors/tsup-neutral/executor.js +3 -1
- package/src/executors/tsup-node/executor.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.43.13](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.12...workspace-tools-v1.43.13) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config-tools:** Added more logging and updated logic to create project graph ([f68d8e3](https://github.com/storm-software/storm-ops/commit/f68d8e358040d15cf8a20216c1aa09da9254ea09))
|
|
7
|
+
|
|
1
8
|
## [1.43.12](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.11...workspace-tools-v1.43.12) (2024-01-17)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -137862,7 +137862,9 @@ ${externalDependencies.map((dep) => {
|
|
|
137862
137862
|
for (const externalDependency of externalDependencies) {
|
|
137863
137863
|
console.log(externalDependency);
|
|
137864
137864
|
const packageConfig = externalDependency.node.data;
|
|
137865
|
-
if (packageConfig?.packageName &&
|
|
137865
|
+
if (packageConfig?.packageName && externalDependency.node.type === "npm") {
|
|
137866
|
+
console.log("In if statement");
|
|
137867
|
+
console.log(packageConfig);
|
|
137866
137868
|
const { packageName, version } = packageConfig;
|
|
137867
137869
|
if (workspacePackageJson.dependencies?.[packageName] || workspacePackageJson.devDependencies?.[packageName] || packageJson?.devDependencies?.[packageName]) {
|
|
137868
137870
|
return null;
|