-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrollup.config.js
46 lines (42 loc) · 869 Bytes
/
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
import babel from 'rollup-plugin-babel'
import inject from 'rollup-plugin-inject'
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
const config = []
const plugins = [
inject({
include: '**/*.js',
exclude: 'node_modules/**',
$: 'jquery'
}),
resolve(),
commonjs(),
babel({
exclude: 'node_modules/**'
})
]
if (process.env.NODE_ENV === 'production') {
plugins.push(terser({
output: {
comments () {
return false
}
}
}))
}
let out = 'dist/element-table.js'
if (process.env.NODE_ENV === 'production') {
out = out.replace(/.js$/, '.min.js')
}
config.push({
input: 'src/install.js',
output: {
name: 'ElementTable',
file: out,
format: 'umd'
},
external: ['jquery'],
plugins
})
export default config