@storm-software/workspace-tools 1.30.6 → 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,10 @@
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
+
1
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)
2
9
 
3
10
 
package/index.js CHANGED
@@ -117585,14 +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 = getProjectConfigurations();
117588
+ const projectConfigs = await Promise.resolve(getProjectConfigurations());
117589
117589
  console.log("Project Configs:");
117590
117590
  console.log(projectConfigs);
117591
117591
  if (implicitDependencies && implicitDependencies.length > 0) {
117592
117592
  options.external = implicitDependencies.reduce(
117593
117593
  (ret, key) => {
117594
117594
  console.log(`\u26A1 Adding implicit dependency: ${key}`);
117595
- const projectConfig = getProjectConfiguration(key);
117595
+ const projectConfig = projectConfigs[key];
117596
117596
  if (projectConfig?.targets?.build) {
117597
117597
  const packageJson = (0, import_devkit2.readJsonFile)(
117598
117598
  projectConfig.targets?.build.options.project