@storm-software/workspace-tools 1.30.5 → 1.30.6

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.30.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.4...workspace-tools-v1.30.5) (2023-12-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with null reference ([329b50e](https://github.com/storm-software/storm-ops/commit/329b50e63ce93dfded0e97b211ba4b452b0625dc))
7
+
1
8
  ## [1.30.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.3...workspace-tools-v1.30.4) (2023-12-14)
2
9
 
3
10
 
package/index.js CHANGED
@@ -117585,6 +117585,9 @@ ${Object.keys(options).map(
117585
117585
  }, []);
117586
117586
  const implicitDependencies = context.projectsConfigurations.projects[context.projectName].implicitDependencies;
117587
117587
  const internalDependencies = [];
117588
+ const projectConfigs = getProjectConfigurations();
117589
+ console.log("Project Configs:");
117590
+ console.log(projectConfigs);
117588
117591
  if (implicitDependencies && implicitDependencies.length > 0) {
117589
117592
  options.external = implicitDependencies.reduce(
117590
117593
  (ret, key) => {