-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
89 lines (83 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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'
import { terser } from 'rollup-plugin-terser'
const fromSrc = (...paths) => {
return path.join(__dirname, 'src', ...paths)
}
const plugins = [
alias({
entries: [
{
find: 'src',
replacement: fromSrc()
},
{
find: 'lib',
replacement: fromSrc('lib')
},
{
find: 'utils',
replacement: fromSrc('utils')
}
]
}),
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 libStarter = 2019
const currentYear = new Date().getFullYear()
const banner = `/*!
* ${name} v${version}
* (c) ${libStarter}${currentYear !== libStarter ? '-' + currentYear : ''} ${author}
* ${license}
*/`
export default [
{
input: 'src/duckfficer.js',
output: [
{
file: 'dist/duckfficer.js',
format: 'cjs',
banner,
preferConst: true
}
],
plugins
},
{
input: 'src/duckfficer.js',
output: [
{
file: 'dist/duckfficer.mjs',
format: 'esm',
banner,
preferConst: true
}
],
plugins
},
{
input: 'src/duckfficer.js',
output: [
{
file: 'dist/duckfficer.umd.js',
format: 'umd',
extend: true,
name: 'default',
banner,
preferConst: true
}
],
plugins: plugins.concat(terser())
}
]