-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
44 lines (42 loc) · 1.21 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
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import typescript from '@rollup/plugin-typescript';
import fs from 'fs';
import path from 'path';
import css from 'rollup-plugin-css-only';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
const production = !process.env.ROLLUP_WATCH || false;
export default fs
.readdirSync(path.join(__dirname, 'webviews', 'pages'))
.map((input) => {
const name = input.split('.')[0];
return {
input: 'webviews/pages/' + input,
output: [
{
file: 'out/compiled/' + name + '.js',
name: 'app',
sourcemap: 'inline',
format: 'iife',
},
],
plugins: [
peerDepsExternal(),
resolve({
browser: true,
dedupe: ['react', 'react-dom'],
}),
replace({
'process.env.NODE_ENV': JSON.stringify('production'),
}),
commonjs(),
typescript({
tsconfig: 'webviews/tsconfig.json',
sourceMap: !production,
inlineSources: !production,
}),
css({ output: name + '.css' }),
],
};
});