We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edaf32a commit 73a539dCopy full SHA for 73a539d
internal/bundler/bundler.go
@@ -1211,6 +1211,10 @@ func (s *scanner) maybeParseFile(
1211
if path.Namespace == "dataurl" {
1212
if _, ok := resolver.ParseDataURL(path.Text); ok {
1213
prettyPath = path.Text
1214
+ if len(prettyPath) > 65 {
1215
+ prettyPath = prettyPath[:65]
1216
+ }
1217
+ prettyPath = strings.ReplaceAll(prettyPath, "\n", "\\n")
1218
if len(prettyPath) > 64 {
1219
prettyPath = prettyPath[:64] + "..."
1220
}
0 commit comments