Skip to content

Commit

Permalink
fix(js-toolkit): fix glob path construction)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Jan 10, 2025
1 parent ebe48cc commit a5da8b9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ function babelifyPackage(destPkg) {

const prjRelPaths = findFiles(
project.dir.asNative,
gl.prefix(`${project.dir.asPosix}/${destPkg.dir.asPosix}/`, globs)
gl.prefix(
`${path.posix.join(project.dir.asPosix, destPkg.dir.asPosix)}/`,
globs
)
);

log.debug(
Expand Down

0 comments on commit a5da8b9

Please sign in to comment.