-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrollup.config.js
94 lines (91 loc) · 2.32 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
85
86
87
88
89
90
91
92
93
94
import commonjs from '@rollup/plugin-commonjs'; // Convert CommonJS modules to ES6
import scss from 'rollup-plugin-scss';
import vuePlugin from 'rollup-plugin-vue';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import { babel } from '@rollup/plugin-babel';
import { terser } from 'rollup-plugin-terser';
import replace from '@rollup/plugin-replace'; // Replace strings in files while bundling them.
import alias from '@rollup/plugin-alias';
import path from 'path';
import pkg from './package.json';
const projectRoot = path.resolve(__dirname, '.');
const banner = `/**
* ${pkg.name} ${pkg.version}
* (c) ${new Date().getFullYear()}
* @license MIT
*/`;
export default {
// this is the file containing all our exported components/functions
input: 'src/index.js',
// this is an array of outputed formats
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true,
banner,
exports: 'default',
},
{
file: pkg.unpkg,
format: 'umd',
name: 'drop-zone',
sourcemap: true,
exports: 'default',
globals: {
vue: 'Vue',
},
banner,
},
],
// this is an array of the plugins that we are including
plugins: [
replace({
preventAssignment: true,
'process.env.NODE_ENV': JSON.stringify('production'),
__VUE_PROD_DEVTOOLS__: JSON.stringify(false),
}),
alias({
entries: [
{
find: '@',
replacement: `${path.resolve(projectRoot, 'src')}`,
},
],
customResolver: nodeResolve({
extensions: ['.js', '.jsx', '.vue'],
}),
}),
scss(),
vuePlugin({
target: 'browser',
template: {
optimizeSSR: true,
},
}),
babel({
exclude: ['node_modules/**', 'core-js/*'],
extensions: ['.js', '.jsx', '.vue'],
babelHelpers: 'runtime',
presets: [
'@babel/preset-env',
],
}),
commonjs(), // Convert CommonJS modules to ES6, so they can be included in a Rollup bundle
nodeResolve(),
terser({
output: {
ecma: 5,
},
compress: {
drop_console: true,
drop_debugger: true,
},
}),
],
// ask rollup to not bundle Vue in the library
external: [
...Object.keys(pkg.peerDependencies || {}),
...Object.keys(pkg.dependencies || {}),
],
};