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 1fdd9c3 commit c47974a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/bundlers/default/src/DefaultBundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,9 @@ function createIdealGraph(
let projectRelativePath = node.value.filePath.slice(
config.projectRoot.length + 1,
);
console.log({
projectRelativePath,
});
if (!assetRegexes.some(regex => regex.test(projectRelativePath))) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/integration-tests/test/bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ describe('bundler', function () {
]);
});

it('should support manual shared bundles via parent config option', async function () {
it.only('should support manual shared bundles via parent config option', async function () {

Check failure on line 1465 in packages/core/integration-tests/test/bundler.js

View workflow job for this annotation

GitHub Actions / Lint

Unexpected exclusive mocha test
await fsFixture(overlayFS, dir)`
yarn.lock:
// Required for config loading
Expand Down

0 comments on commit c47974a

Please sign in to comment.