-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
rollup.config.js
14 lines (13 loc) · 1.01 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import terser from '@rollup/plugin-terser';
export default {
input: 'source/scrawl.js',
output: {
file: 'min/scrawl.js',
format: 'es',
plugins: [terser({
mangle: {
reserved: ['Action', 'Anchor', 'Animation', 'Bezier', 'Block', 'Button', 'Canvas', 'Cell', 'Cog', 'Color', 'ConicGradient', 'Coordinate', 'Crescent', 'Element', 'Emitter', 'EnhancedLabel', 'EnhancedLabelLine', 'EnhancedLabelUnit', 'EnhancedLabelUnitArray', 'Filter', 'FilterEngine', 'FontAttributes', 'Force', 'Gradient', 'Grid', 'Group', 'ImageAsset', 'Label', 'Line', 'LineObject', 'LineSpiral', 'Loom', 'Mesh', 'Net', 'NoiseAsset', 'Oval', 'Palette', 'Particle', 'ParticleHistory', 'Pattern', 'Picture', 'Polygon', 'Polyline', 'Quadratic', 'Quaternion', 'RadialGradient', 'RawAsset', 'RdAsset', 'Rectangle', 'RenderAnimation', 'Shape', 'Spiral', 'Spring', 'SpriteAsset', 'Stack', 'Star', 'State', 'Tetragon', 'Ticker', 'Tracer', 'Tween', 'UnitObject', 'UnstackedElement', 'Vector', 'VideoAsset', 'Wheel', 'World']
}
})]
}
};