forked from js-cookie/js-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
60 lines (56 loc) · 1.32 KB
/
rollup.config.mjs
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
import * as fs from 'fs'
import terser from '@rollup/plugin-terser'
import filesize from 'rollup-plugin-filesize'
import license from 'rollup-plugin-license'
const loadJSON = (path) =>
JSON.parse(fs.readFileSync(new URL(path, import.meta.url)))
const pkg = loadJSON('./package.json')
const licenseBanner = license({
banner: {
content: '/*! <%= pkg.name %> v<%= pkg.version %> | <%= pkg.license %> */',
commentStyle: 'none'
}
})
export default [
{
input: 'src/api.mjs',
output: [
// config for <script type="module">
{
file: pkg.module,
format: 'esm'
},
// config for <script nomodule>
{
file: pkg.browser,
format: 'umd',
name: 'Cookies',
noConflict: true,
banner: ';'
}
],
plugins: [licenseBanner]
},
{
input: 'src/api.mjs',
output: [
// config for <script type="module">
{
file: pkg.module.replace('.mjs', '.min.mjs'),
format: 'esm'
},
// config for <script nomodule>
{
file: pkg.browser.replace('.js', '.min.js'),
format: 'umd',
name: 'Cookies',
noConflict: true
}
],
plugins: [
terser(),
licenseBanner, // must be applied after terser, otherwise it's being stripped away...
filesize()
]
}
]