forked from ivandotv/radio-browser-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
164 lines (146 loc) · 3.23 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import babel from 'rollup-plugin-babel'
import peerDepsExternal from 'rollup-plugin-peer-deps-external'
import { terser } from 'rollup-plugin-terser'
import filesize from 'rollup-plugin-filesize'
// import visualizer from 'rollup-plugin-visualizer'
const extensions = ['.js', '.jsx', '.ts', '.tsx']
const libraryName = 'index'
const input = 'src/index.ts'
const unpkgFilePath = libPath('./dist/unpkg', libraryName.toLocaleLowerCase())
// https://github.com/rollup/rollup/issues/703#issuecomment-314848245
function defaultPlugins(config = {}) {
return [
resolve({ extensions }),
peerDepsExternal(),
babel(config.babel || undefined),
commonjs(),
filesize()
// visualizer({ template: "circlepacking" }),
]
}
// umd build for the browser
const umd = {
input,
output: [
{
file: unpkgFilePath('.js'),
format: 'umd',
name: libraryName,
sourcemap: true
},
{
file: unpkgFilePath('.min.js'),
format: 'umd',
name: libraryName,
sourcemap: true,
plugins: [terser()]
}
],
plugins: defaultPlugins({
babel: {
extensions,
envName: 'browser'
}
})
}
const umdWithPolyfill = {
input,
output: [
{
file: unpkgFilePath('.polyfill.min.js'),
format: 'umd',
name: libraryName,
sourcemap: true,
plugins: [terser()]
}
],
plugins: defaultPlugins({
babel: {
extensions,
envName: 'browserPolyfill'
}
})
}
// build for browsers as module
const browserModule = {
input,
output: [
{
file: unpkgFilePath('.esm.js'),
format: 'esm',
sourcemap: true
},
{
file: unpkgFilePath('.esm.min.js'),
format: 'esm',
sourcemap: true,
plugins: [terser()]
}
],
plugins: defaultPlugins({
babel: {
extensions,
envName: 'browserModule'
}
})
}
const browserModuleWithPolyfill = {
input,
output: [
{
file: unpkgFilePath('.esm.polyfill.js'),
format: 'esm',
sourcemap: true
},
{
file: unpkgFilePath('.esm.polyfill.min.js'),
format: 'esm',
sourcemap: true,
plugins: [terser()]
}
],
plugins: defaultPlugins({
babel: {
extensions,
envName: 'browserModulePolyfill'
}
})
}
const allBuilds = [
umd,
// umdWithPolyfill,
browserModule
// browserModuleWithPolyfill
]
const envToBuildMap = {
umd: [umd, umdWithPolyfill],
browser: [browserModule, browserModuleWithPolyfill]
}
const finalBuilds = chooseBuild(envToBuildMap, process.env.BUILD) || allBuilds
function libPath(path, libName) {
return function (suffix) {
return path.concat('/', libName, suffix)
}
}
function chooseBuild(buildMap, builds) {
if (!builds) {
return
}
const envArr = builds.split('--')
const result = []
if (envArr.length > 0) {
envArr.forEach((element) => {
if (buildMap[element]) {
result.push(...buildMap[element])
console.log(`Found key: ${element}`)
}
})
if (result.length === 0) {
throw new Error(`Build configuration keys: ${builds} don't exists`)
}
return result
}
}
export default Promise.resolve([...finalBuilds])