-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
64 lines (57 loc) · 1.33 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
59
60
61
62
63
64
import babel from 'rollup-plugin-babel';
import { terser } from 'rollup-plugin-terser';
import { eslint } from 'rollup-plugin-eslint';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
const isProd = process.env.env === 'production';
const format = process.env.format || 'umd';
const isES = format === 'es';
const file = 'dist/ispin' +
(format !== 'umd' ? '.' + format : '') +
(isProd ? '.min' : '') +
'.js';
const input = 'src/ispin.js';
const babelConf = isES ? {
presets: [
['@babel/preset-env', {
modules: false,
useBuiltIns: 'entry',
targets: {
browsers: [
'Chrome >= 60',
'Safari >= 10.1',
'iOS >= 10.3',
'Firefox >= 54',
'Edge >= 15',
],
},
}],
'@babel/preset-flow',
],
} : {
presets: [
['@babel/preset-env', {
'modules': false,
'useBuiltIns': 'entry'
}],
'@babel/preset-flow',
],
exclude: 'node_modules/**',
plugins: ['@babel/plugin-proposal-object-rest-spread', '@babel/plugin-transform-object-assign']
};
export default {
input,
output: {
file,
format,
name: 'ISpin',
sourcemap: true,
},
plugins: [
eslint({configFile: '.eslintrc'}),
resolve(),
babel(babelConf),
!isES && commonjs(),
isProd && terser()
]
}