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: Fix broken sourcemap comment generation for .css files #492

Merged
merged 1 commit into from Dec 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/plugin.ts
Expand Up @@ -160,7 +160,7 @@ export class PluginContainer {
await outputFile(
info.path,
info.type === 'chunk'
? info.code + getSourcemapComment(!!info.map, info.path)
? info.code + getSourcemapComment(!!info.map, info.path, isCSS(file.path))
: info.contents,
{ mode: info.type === 'chunk' ? info.mode : undefined }
)
Expand All @@ -183,6 +183,9 @@ export class PluginContainer {
}
}

const getSourcemapComment = (hasMap: boolean, filepath: string) => {
return hasMap ? `//# sourceMappingURL=${path.basename(filepath)}.map` : ''
const getSourcemapComment = (hasMap: boolean, filepath: string, isCssFile: boolean) => {
if (!hasMap) return ''
const prefix = isCssFile ? '/*' : '//'
const suffix = isCssFile ? ' */' : ''
egoist marked this conversation as resolved.
Show resolved Hide resolved
return `${prefix}# sourceMappingURL=${path.basename(filepath)}${suffix}`
}