@storm-software/workspace-tools 1.30.4 → 1.30.5

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.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.3...workspace-tools-v1.30.4) (2023-12-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resovled issue with internal references ([54334e6](https://github.com/storm-software/storm-ops/commit/54334e65c01f40b92b40c73361cfb1023df8e780))
7
+
1
8
  ## [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
9
 
3
10
 
package/index.js CHANGED
@@ -117588,8 +117588,9 @@ ${Object.keys(options).map(
117588
117588
  if (implicitDependencies && implicitDependencies.length > 0) {
117589
117589
  options.external = implicitDependencies.reduce(
117590
117590
  (ret, key) => {
117591
+ console.log(`\u26A1 Adding implicit dependency: ${key}`);
117591
117592
  const projectConfig = getProjectConfiguration(key);
117592
- if (projectConfig.targets?.build) {
117593
+ if (projectConfig?.targets?.build) {
117593
117594
  const packageJson = (0, import_devkit2.readJsonFile)(
117594
117595
  projectConfig.targets?.build.options.project
117595
117596
  );