forked from drecom/idb-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
47 lines (45 loc) · 868 Bytes
/
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
import babel from 'rollup-plugin-babel';
const output = [];
const plugins = [];
if(process.env.BROWSER){
// Browser
output.push({
file: 'dist/browser/idb-cache.js',
format: 'iife',
intro: '// idb-cache - https://github.com/drecom/idb-cache',
name: 'IDBCache',
sourcemap: true,
});
// Babel
plugins.push(
babel({
babelrc: false,
presets: [[
'@babel/preset-env', {
targets:{
browsers:[
"iOS >= 10.0",
"Android >= 5.0",
]
}
}
]]
})
);
}else{
// CommonJS Module
output.push({
file: 'dist/cjs/idb-cache.js',
format: 'cjs',
});
// ES Module
output.push({
file: 'dist/esm/idb-cache.js',
format: 'es',
});
}
export default {
input: 'dist/tsc/idb-cache.js',
output: output,
plugins: plugins,
};