-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathrollup.config.js
84 lines (80 loc) · 1.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import path from 'path'
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import babel from 'rollup-plugin-babel';
import vue from 'rollup-plugin-vue';
import { terser as uglify } from 'rollup-plugin-terser';
import css from 'rollup-plugin-css-only';
import license from 'rollup-plugin-license';
import pkg from './package.json';
const input = 'src/index.js';
// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
const external = [
'vue'
];
export default [
{
input,
output: {
name: 'vuent',
file: pkg.browser,
format: 'umd',
sourcemap: true,
globals: {
'vue': 'Vue'
}
},
plugins: [
resolve(),
commonjs(),
vue({
css: false,
template: {
compilerOptions: {
preserveWhitespace: false
}
}
}),
css({
output: 'dist/vuent.css',
}),
babel({
exclude: 'node_modules/**'
}),
production && uglify(),
license({
thirdParty: {
allow: '(MIT OR Apache-2.0)',
output: {
file: path.join(__dirname, 'dist', 'dependencies.md'),
}
}
})
],
external
},
{
input,
output: [
{ file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'esm' }
],
plugins: [
resolve(),
vue({
css: false,
template: {
compilerOptions: {
preserveWhitespace: false
}
}
}),
css({
output: false
})
],
external
}
];