forked from vuejs/vuex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
57 lines (48 loc) · 1.23 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
import buble from '@rollup/plugin-buble'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
import pkg from './package.json'
const banner = `/*!
* vuex v${pkg.version}
* (c) ${new Date().getFullYear()} Evan You
* @license MIT
*/`
export function createEntries(configs) {
return configs.map((c) => createEntry(c))
}
function createEntry(config) {
const c = {
input: config.input,
plugins: [],
output: {
banner,
file: config.file,
format: config.format
},
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg)
}
}
}
if (config.format === 'umd') {
c.output.name = c.output.name || 'Vuex'
}
c.plugins.push(replace({
__VERSION__: pkg.version,
__DEV__: config.format !== 'umd' && !config.browser
? `(process.env.NODE_ENV !== 'production')`
: config.env !== 'production'
}))
if (config.transpile !== false) {
c.plugins.push(buble())
}
c.plugins.push(resolve())
c.plugins.push(commonjs())
if (config.minify) {
c.plugins.push(terser({ module: config.format === 'es' }))
}
return c
}