@storm-software/workspace-tools 1.30.4 → 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,17 @@
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
+
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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Resovled issue with internal references ([54334e6](https://github.com/storm-software/storm-ops/commit/54334e65c01f40b92b40c73361cfb1023df8e780))
14
+
1
15
  ## [1.30.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.2...workspace-tools-v1.30.3) (2023-12-12)
2
16
 
3
17
 
package/index.js CHANGED
@@ -117585,11 +117585,15 @@ ${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) => {
117594
+ console.log(`\u26A1 Adding implicit dependency: ${key}`);
117591
117595
  const projectConfig = getProjectConfiguration(key);
117592
- if (projectConfig.targets?.build) {
117596
+ if (projectConfig?.targets?.build) {
117593
117597
  const packageJson = (0, import_devkit2.readJsonFile)(
117594
117598
  projectConfig.targets?.build.options.project
117595
117599
  );