Skip to content

Commit

Permalink
Merge pull request #1242 from bryceosterhaus/fixBundler
Browse files Browse the repository at this point in the history
fix(npm-bundler): account for negations and absolute paths work
  • Loading branch information
bryceosterhaus authored Jan 9, 2025
2 parents 551b87b + 0eb7fdb commit 35e2519
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function babelifyPackage(destPkg) {

// Determine file globs

const globs = ['**/*.js', '!node_modules/**/*'];
const globs = ['**/*.js', '!**/node_modules/**/*'];

if (destPkg.isRoot) {
globs.push(...gl.negate(project.transform.babelIgnores));
Expand Down

0 comments on commit 35e2519

Please sign in to comment.