Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcompiles committed Oct 19, 2023
1 parent c47974a commit 67db51e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/bundlers/default/src/DefaultBundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@ function createIdealGraph(
);
console.log({
projectRelativePath,
assetRegexes,
});
if (!assetRegexes.some(regex => regex.test(projectRelativePath))) {
return;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/utils/src/glob.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function globMatch(
}

export function globToRegex(glob: Glob, opts?: Options): RegExp {
return makeRe(normalizeSeparators(glob), opts);
return makeRe(glob, opts);
}

export function globSync(
Expand Down

0 comments on commit 67db51e

Please sign in to comment.