Skip to content

Commit

Permalink
Merge pull request #1243 from bryceosterhaus/master
Browse files Browse the repository at this point in the history
fix(js-toolkit): fix glob path construction
  • Loading branch information
bryceosterhaus authored Jan 10, 2025
2 parents ebe48cc + 7640a2f commit 773a579
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 773a579

Please sign in to comment.