fix indentation

print
Rich Harris 3 months ago
parent 7bf7f5672a
commit 700260be3c

@ -108,6 +108,12 @@ function run() {
onComment: comments
});
comments.forEach((comment) => {
if (comment.type === 'Block') {
comment.value = comment.value.replace(/^\t+/gm, '');
}
});
ast = walk(ast, null, {
// @ts-expect-error
Identifier(node, context) {

Loading…
Cancel
Save