-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrollup-plugin-configs.js
79 lines (72 loc) · 1.52 KB
/
rollup-plugin-configs.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
/* Configs used by rollup plugins */
import path from 'path';
/*
* Babel Common
*/
const babelConfig = {
babelrc: false,
sourceMap: true,
inputSourceMap: true,
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator'
]
};
/*
* Babel UMD
*/
export const umdBabelConfig = {
...babelConfig,
babelHelpers: 'bundled',
presets: [
[
'@babel/preset-env',
{
targets: { ie: '10' },
useBuiltIns: 'usage',
corejs: { version: '3.6', proposals: true }
}
]
],
exclude: [/\/core-js\//]
};
/*
* Babel CJS/ESM
*/
export const babelEsConfig = {
...babelConfig,
plugins: ['@babel/plugin-transform-runtime', ...babelConfig.plugins],
babelHelpers: 'runtime',
presets: ['@babel/preset-env']
};
/*
* Replace
*/
export const replaceConfig = {
'process.env.NODE_ENV': JSON.stringify('production')
};
/*
* UMD Resolve config
*/
export const browserResolveConfig = { preferBuiltins: false, browser: true };
/*
* PostCSS config
*/
export const postcssConfig = {
extract: path.join(__dirname, 'dist', 'gg-ez-vp.css'),
minimize: true
};
/*
* License config
*/
export const licenseConfig = {
banner: {
content: {
file: path.join(__dirname, 'LICENSE')
}
},
thirdParty: {
output: path.join(__dirname, 'dist', 'dependencies.txt')
}
};