0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
This commit is contained in:
Rich Harris 2017-02-27 16:20:21 -05:00
parent 3e6e5e5304
commit 453ef84893

View File

@ -46,7 +46,7 @@ export default function processCss ( parsed, code ) {
// remove comments. TODO would be nice if this was exposed in css-tree // remove comments. TODO would be nice if this was exposed in css-tree
let match; let match;
while ( match = commentsPattern.exec( css ) ) { while ( match = commentsPattern.exec( css ) ) {
const start = match.index; const start = match.index + offset;
const end = start + match[0].length; const end = start + match[0].length;
code.remove( start, end ); code.remove( start, end );