-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
48 lines (46 loc) · 958 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
'use strict';
import babel from 'rollup-plugin-babel';
import { uglify } from 'rollup-plugin-uglify';
module.exports = [
// commonJS
{
input: 'src/index.js',
output: {
file: 'lib/index.js',
format: 'cjs',
},
plugins: [babel()],
},
// es
{
input: 'src/index.js',
output: {
file: 'lib/index.esm.js',
format: 'esm',
},
plugins: [babel()],
},
// unpkg
{
input: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'iife',
name: 'formatCurl',
},
plugins: [babel()],
},
// unpkg (minified)
{
input: 'src/index.js',
output: {
file: 'dist/index.min.js',
format: 'iife',
name: 'formatCurl',
},
plugins: [
babel(),
uglify(),
],
},
];