Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: align source name conflict handling #6993

Merged
merged 10 commits into from
Jul 2, 2024
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
CPunisher committed Jul 1, 2024
commit e84f230d9cd7fba51a459ca43d7ebec48d0bd512
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ impl SourceMapDevToolPlugin {
for source in sources {
let module_or_source = source_map_modules
.get(source.as_ref())
.expect("Shoud have module or source");
.expect("expected a module or source");
let source_name = module_to_source_name
.get(module_or_source)
.expect("expected a filename at the given index but found None")
Expand Down