-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
58 lines (55 loc) · 1.12 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import babel from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
const externals = [
'@rollup/plugin-babel',
'@rollup/plugin-node-resolve',
'@rollup/plugin-commonjs',
'@rollup/plugin-terser',
'rollup-plugin-postcss',
'rollup-plugin-svg',
'gulp',
'stylelint',
'gulp-postcss',
'gulp-flatten',
'gulp-plumber',
'gulp-sourcemaps',
'gulp-if',
'gulp-environments',
'gulp-eslint',
'gulp-svg-sprite',
'path',
'fs',
'crypto',
'browser-sync',
'fancy-log',
'glob-all',
'through2',
'child_process',
'rollup',
'rollup-plugin-cleanup',
'svg-sprite',
'zlib',
'util',
'vinyl',
'glob',
'fs-extra',
'path',
];
export default [
{
input: 'src/index.js',
plugins: [nodeResolve(), commonjs(), json(), babel({ babelHelpers: 'bundled' })],
external: externals,
output: {
file: 'dist/cjs/index.cjs',
format: 'cjs',
},
onwarn(warning, warn) {
if (warning.code === 'UNRESOLVED_IMPORT') throw new Error(warning.message);
// Use default for everything else
warn(warning);
},
},
];