@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/CHANGELOG.md +12 -0
- package/index.js +4 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +4 -6
package/package.json
CHANGED
|
@@ -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
|
-
|
|
717988
|
-
|
|
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`,
|