forked from ngVue/ngVue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
43 lines (41 loc) · 948 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
import babel from 'rollup-plugin-babel'
import nodeResolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import uglify from 'rollup-plugin-uglify'
import { minify } from 'uglify-js'
const entry = process.env.ENTRY
const output = process.env.OUTPUT
const minified = process.env.MIN === 'true'
export default {
entry: `src/${entry}.js`,
moduleName: 'ngVue',
moduleId: 'ngVue',
plugins: [
nodeResolve({
browser: true
}),
babel(),
commonjs({
namedExports: {
'node_modules/babel-helper-vue-jsx-merge-props/index.js': ['_mergeJSXProps']
}
}),
uglify(
minified
? {}
: {
output: {
beautify: true
},
mangle: false
},
minify
)
],
globals: {
vue: 'Vue',
angular: 'angular'
},
external: ['vue', 'angular'],
targets: [{ dest: `build/${output}.js`, format: 'umd' }]
}