-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
58 lines (52 loc) · 1.16 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
import path from 'path'
import commonjs from 'rollup-plugin-commonjs'
import json from 'rollup-plugin-json'
import alias from 'rollup-plugin-alias'
import { name, version, author, license } from './package.json'
const fromSrc = (...paths) => {
return path.join(__dirname, 'src', ...paths)
}
const plugins = [
alias({
src: fromSrc(),
lib: fromSrc('lib')
}),
json(),
commonjs({
// non-CommonJS modules will be ignored, but you can also
// specifically include/exclude files
// if true then uses of `global` won't be dealt with by this plugin
ignoreGlobal: true, // Default: false
// if false then skip sourceMap generation for CommonJS modules
sourceMap: true // Default: true
})
]
const banner = `/*!
* ${ name } v${ version }
* (c) 2019-${ new Date().getFullYear() } ${ author }
* ${ license }
*/`
export default [
{
input: 'src/index.js',
output: [
{
file: `dist/${name}.js`,
format: 'cjs',
banner
},
],
plugins
},
{
input: 'src/index.js',
output: [
{
file: `dist/${name}.esm.js`,
format: 'esm',
banner
}
],
plugins
},
]