forked from infinitered/apisauce
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
51 lines (45 loc) · 1.15 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
import babel from 'rollup-plugin-babel'
import commonjs from 'rollup-plugin-commonjs'
import filesize from 'rollup-plugin-filesize'
import resolve from 'rollup-plugin-node-resolve'
import uglify from 'rollup-plugin-uglify'
const externalModules = ['axios']
const input = 'lib/apisauce.js'
const name = 'apisauce'
function isImportExternal(importStr) {
let external = false
// Check for each of the external modules defined above
externalModules.forEach(externalModule => {
if (importStr.indexOf(externalModule) >= 0) external = true
})
return external
}
function getBabelOptions() {
return { babelrc: false, plugins: [] }
}
export default [
{
input,
output: {
exports: 'named',
file: `dist/${name}.js`,
format: 'cjs',
},
plugins: [babel(getBabelOptions()), uglify(), filesize()],
external: isImportExternal,
},
{
input,
output: {
exports: 'named',
file: `dist/umd/${name}.js`,
format: 'umd',
globals: {
axios: 'axios',
},
name,
},
plugins: [babel(getBabelOptions()), resolve(), commonjs(), uglify(), filesize()],
external: externalModules,
},
]