We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a259a5 commit 48c17f6Copy full SHA for 48c17f6
src/index.js
@@ -1,6 +1,5 @@
1
import fs from 'fs';
2
import path from 'path';
3
-import decomment from 'decomment';
4
5
import MagicString from 'magic-string';
6
import { createFilter } from 'rollup-pluginutils';
@@ -37,7 +36,7 @@ export default function angular(options = {}) {
37
36
transform(source, map) {
38
if (!filter(map)) return;
39
40
- const magicString = new MagicString(decomment(source));
+ const magicString = new MagicString(source);
41
const dir = path.parse(map).dir;
42
43
let hasReplacements = false;
0 commit comments