-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
49 lines (48 loc) · 992 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
44
45
46
47
48
49
var uglify = require('rollup-plugin-uglify')
var cjs = require('rollup-plugin-commonjs')
var version = require('./package.json').version
var banner =
`/**
* leopard v${version}
* (c) ${new Date().getFullYear()} Ryan Liu
* @license WTFPL
*/`
export default [{
input: './src/index.browser.js',
output: {
file: './dist/leopard.browser.js',
format: 'umd',
name: 'Leopard',
banner
},
plugins: [cjs()]
}, {
input: './src/index.browser.js',
output: {
file: './dist/leopard.browser.min.js',
format: 'umd',
name: 'Leopard',
banner
},
plugins: [cjs(), uglify()]
}, {
input: './src/index.server.js',
output: {
file: './dist/leopard.server.js',
format: 'cjs',
name: 'Leopard',
banner
},
external: ['fs'],
plugins: [cjs()]
}, {
input: './src/index.server.js',
output: {
file: './dist/leopard.server.min.js',
format: 'cjs',
name: 'Leopard',
banner
},
external: ['fs'],
plugins: [cjs(), uglify()]
}]