@storm-software/workspace-tools 1.174.1 → 1.175.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.174.1",
3
+ "version": "1.175.0",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "repository": {
@@ -717983,12 +717983,10 @@ async function* rollupExecutorFn(options, context, config) {
717983
717983
  options.additionalEntryPoints?.map(
717984
717984
  (entry) => correctPaths2((0, import_path.join)(workspaceRoot, entry))
717985
717985
  ) ?? []
717986
- ).map(
717987
- (entry) => entry.replace(
717988
- workspaceRoot.endsWith("/") ? `${workspaceRoot}/` : workspaceRoot,
717989
- ""
717990
- )
717991
- );
717986
+ ).map((entry) => {
717987
+ const formatted = entry.replace(workspaceRoot, "");
717988
+ return formatted.endsWith("/") ? formatted.slice(-1) : formatted;
717989
+ });
717992
717990
  }
717993
717991
  writeDebug2(
717994
717992
  `\u{1F4E6} Running Storm Rollup build process on the ${context?.projectName} project`,