Skip to content

Commit

Permalink
ref(sourcemaps): Reword "no sourcemap ref"
Browse files Browse the repository at this point in the history
Instead, this message now reads "no sourcemap found," which is hopefully clearer to users.

Fixes #1964
  • Loading branch information
szokeasaurusrex committed Dec 17, 2024
1 parent b42e559 commit 0669ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/sourcemaps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ impl SourceMapProcessor {
pieces.push(format!("sourcemap at {}", style(sm_url).cyan()));
};
} else {
pieces.push("no sourcemap ref".into());
pieces.push("no sourcemap found".into());
}
}

Expand Down

0 comments on commit 0669ca1

Please sign in to comment.