@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 +7 -0
- package/index.js +1 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +1 -1
package/CHANGELOG.md
CHANGED
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.
|
|
829726
|
+
return formatted.startsWith("/") ? formatted.slice(1) : formatted;
|
|
829727
829727
|
});
|
|
829728
829728
|
}
|
|
829729
829729
|
writeDebug2(
|