@storm-software/workspace-tools 1.175.0 → 1.175.1

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.175.1 (2024-09-06)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **workspace-tools:** Resolve issue with invalid additional entry paths
6
+ ([546753ab](https://github.com/storm-software/storm-ops/commit/546753ab))
7
+
1
8
  ## 1.175.0 (2024-09-06)
2
9
 
3
10
  ### Features
package/index.js CHANGED
@@ -829723,7 +829723,7 @@ async function* rollupExecutorFn(options, context, config) {
829723
829723
  ) ?? []
829724
829724
  ).map((entry) => {
829725
829725
  const formatted = entry.replace(workspaceRoot3, "");
829726
- return formatted.endsWith("/") ? formatted.slice(-1) : formatted;
829726
+ return formatted.startsWith("/") ? formatted.slice(1) : formatted;
829727
829727
  });
829728
829728
  }
829729
829729
  writeDebug2(