@storm-software/workspace-tools 1.30.5 → 1.30.7

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,17 @@
1
+ ## [1.30.6](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.5...workspace-tools-v1.30.6) (2023-12-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Added debugging logs ([6801075](https://github.com/storm-software/storm-ops/commit/68010759c1cf8ec21c676886318ee04d3da60533))
7
+
8
+ ## [1.30.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.4...workspace-tools-v1.30.5) (2023-12-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Resolved issue with null reference ([329b50e](https://github.com/storm-software/storm-ops/commit/329b50e63ce93dfded0e97b211ba4b452b0625dc))
14
+
1
15
  ## [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
16
 
3
17
 
package/index.js CHANGED
@@ -117585,11 +117585,14 @@ ${Object.keys(options).map(
117585
117585
  }, []);
117586
117586
  const implicitDependencies = context.projectsConfigurations.projects[context.projectName].implicitDependencies;
117587
117587
  const internalDependencies = [];
117588
+ const projectConfigs = await Promise.resolve(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) => {
117591
117594
  console.log(`\u26A1 Adding implicit dependency: ${key}`);
117592
- const projectConfig = getProjectConfiguration(key);
117595
+ const projectConfig = projectConfigs[key];
117593
117596
  if (projectConfig?.targets?.build) {
117594
117597
  const packageJson = (0, import_devkit2.readJsonFile)(
117595
117598
  projectConfig.targets?.build.options.project