move rollup to devDeps

This commit is contained in:
syuilo 2022-07-14 23:54:52 +09:00
parent ddc899938a
commit a4b5a0072d
2 changed files with 27 additions and 27 deletions

View file

@ -56,7 +56,6 @@
"random-seed": "0.3.0",
"reflect-metadata": "0.1.13",
"rndstr": "1.0.0",
"rollup": "2.76.0",
"s-age": "1.1.2",
"sass": "1.53.0",
"seedrandom": "3.0.5",
@ -102,6 +101,7 @@
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"rollup": "2.76.0",
"cross-env": "7.0.3",
"cypress": "10.3.0",
"eslint": "8.19.0",

View file

@ -23,9 +23,9 @@ export default function json5(options: RollupJsonOptions = {}): Plugin {
preferConst: options.preferConst,
compact: options.compact,
namedExports: options.namedExports,
indent
indent,
}),
map: { mappings: '' }
map: { mappings: '' },
};
} catch (err) {
const message = 'Could not parse JSON file';
@ -33,6 +33,6 @@ export default function json5(options: RollupJsonOptions = {}): Plugin {
this.warn({ message, id, position });
return null;
}
}
},
};
}