1
0
mirror of https://github.com/svg/svgo.git synced 2025-04-19 10:22:15 +03:00
svgo/rollup.config.js

44 lines
1.1 KiB
JavaScript

import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import { terser } from 'rollup-plugin-terser';
export default {
input: './lib/svgo.js',
output: {
file: './dist/svgo.browser.js',
format: 'esm',
},
onwarn(warning) {
throw Error(warning.toString());
},
plugins: [
{
resolveId(importee, importer) {
if (importee === 'os') {
return importee;
}
// see https://github.com/csstree/csstree/pull/152
if (importee === 'css-tree') {
return this.resolve('css-tree/dist/csstree.min.js', importer);
}
},
load(id) {
if (id === 'os') {
return `export var EOL = '\\n'`;
}
},
},
nodeResolve({ browser: true, preferBuiltins: false }),
commonjs(),
json(),
// Whitespaces and comments removal makes the browser bundle lighter
// while retaining the ability to debug errors
terser({
compress: false,
mangle: false,
format: { comments: false },
}),
],
};