-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js.hbs
85 lines (80 loc) · 1.75 KB
/
rollup.config.js.hbs
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
import path from 'path'
import commonjs from 'rollup-plugin-commonjs'
import json from 'rollup-plugin-json'
import alias from 'rollup-plugin-alias'{{#config}}{{#iife}}
import minify from 'rollup-plugin-babel-minify'{{/iife}}{{/config}}
import { name, version, author, license } from './package.json'
const fromSrc = (...paths) => {
return path.join(__dirname, 'src', ...paths)
}
const plugins = [
alias({
entries: [
{
find: 'src',
replacement: fromSrc()
},
{
find: 'lib',
replacement: 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 cleanName = name.indexOf('/') >= 0 ? name.split('/')[1] : name
const banner = `/*!
* ${ name } v${ version }
* (c) {{{ year }}}-${ new Date().getFullYear() } ${ author }
* ${ license }
*/`
export default [
{{#if config.cjs}}
{
input: 'src/index.js',
output: [
{
file: `dist/${cleanName}.js`,
format: 'cjs',
banner
},
],
plugins
},
{{/if}}
{{#if config.esm}}
{
input: 'src/index.js',
output: [
{
file: `dist/${cleanName}.esm.js`,
format: 'esm',
banner
}
],
plugins
},
{{/if}}
{{#if config.iife}}
{
input: 'src/index.js',
output: [
{
file: `dist/${cleanName}.iife.js`,
format: 'iife',
name: '{{{ iifeName }}}',
banner
}
],
plugins: plugins.concat(minify())
},
{{/if}}
]