-
Notifications
You must be signed in to change notification settings - Fork 23
/
rollup.config.js
53 lines (52 loc) · 1.19 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
import vue from 'rollup-plugin-vue';
import commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import buble from "@rollup/plugin-buble";
import { terser } from 'rollup-plugin-terser';
export default [
{
input: 'src/index.js',
output: {
format: 'umd',
file: 'dist/vue-scrollama.umd.js',
name: 'VueScrollama',
exports: 'named'
},
plugins: [
nodeResolve({exportConditions: ['node']}),
commonjs({include: 'node_modules/**'}),
vue()
]
},
// ESM build to be used with webpack/rollup.
{
input: 'src/index.js',
output: {
format: 'esm',
file: 'dist/vue-scrollama.esm.js',
exports: 'named'
},
plugins: [
nodeResolve({exportConditions: ['node']}),
commonjs({include: 'node_modules/**'}),
vue()
]
},
// Browser build.
{
input: 'src/wrapper.js',
output: {
format: 'iife',
file: 'dist/vue-scrollama.min.js',
name: 'VueScrollama',
exports: 'named'
},
plugins: [
nodeResolve({exportConditions: ['node']}),
commonjs({include: 'node_modules/**'}),
vue(),
buble(),
terser()
]
}
];