-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
121 lines (111 loc) · 2.69 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
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
/* eslint-disable import/no-extraneous-dependencies */
import { babel } from '@rollup/plugin-babel';
import replace from '@rollup/plugin-replace';
import terser from '@rollup/plugin-terser';
import serve from 'rollup-plugin-serve';
// TODO: Wait once this issue will be fixed before update the terser plugin https://github.com/rollup/plugins/issues/1371
// TODO: Remove this hack once this issue will be resolved https://github.com/rollup/plugins/issues/1366
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
global['__filename'] = __filename;
import data from './package.json' assert { type: 'json' };
const year = new Date().getFullYear();
function getHeader() {
return `/*!
* ivent v${data.version} (${data.homepage})
* Copyright ${year} ${data.author}
* Licensed under MIT (https://github.com/nk-crew/ivent/blob/master/LICENSE)
*/
`;
}
const input = './src/ivent.js';
const bundles = [
{
input,
output: {
banner: getHeader(),
file: './dist/ivent.esm.js',
format: 'esm',
},
},
{
input,
output: {
banner: getHeader(),
file: './dist/ivent.esm.min.js',
format: 'esm',
compact: true,
},
},
{
input,
output: {
banner: getHeader(),
name: 'ivent',
file: './dist/ivent.js',
format: 'umd',
},
},
{
input,
output: {
banner: getHeader(),
name: 'ivent',
file: './dist/ivent.min.js',
format: 'umd',
compact: true,
},
},
{
input,
output: {
banner: getHeader(),
file: './dist/ivent.cjs',
format: 'cjs',
exports: 'named',
},
},
{
input,
output: {
banner: getHeader(),
file: './dist/ivent.cjs',
format: 'cjs',
exports: 'named',
compact: true,
},
},
];
const isDev = () => process.env.NODE_ENV === 'dev';
const isUMD = (file) => file.includes('ivent.js');
const isMinEnv = (file) => file.includes('.min.');
const isSpecificEnv = (file) => isMinEnv(file);
const isDebugAlways = (file) => (isDev() || isUMD(file) ? 'true' : 'false');
const configs = bundles.map(({ input: inputPath, output }) => ({
input: inputPath,
output,
plugins: [
babel({
babelHelpers: 'bundled',
plugins: ['annotate-pure-calls'],
}),
replace({
__DEV__: isSpecificEnv(output.file)
? isDebugAlways(output.file)
: 'process.env.NODE_ENV !== "production"',
preventAssignment: true,
}),
output.file.includes('.min.') && terser(),
],
}));
// Dev server.
if (isDev()) {
configs[configs.length - 1].plugins.push(
serve({
open: true,
contentBase: ['demo', './'],
port: 3002,
})
);
}
export default configs;