-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
72 lines (64 loc) · 2 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
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import postcss from 'rollup-plugin-postcss';
import serve from 'rollup-plugin-serve';
import typescript from '@rollup/plugin-typescript';
import alias from '@rollup/plugin-alias';
import livereload from 'rollup-plugin-livereload';
import replace from '@rollup/plugin-replace';
import del from 'rollup-plugin-delete';
import copy from 'rollup-plugin-copy';
const isProduction = !process.env.ROLLUP_WATCH;
export default {
input: 'src/index.tsx',
output: {
file: 'dist/bundle.js',
sourcemap: true
},
plugins: [
// dist cleanup
isProduction && del({ targets: 'dist/*' }),
// copy static assets
copy(
{
targets: [
{ src: 'src/index.html', dest: 'dist' },
],
}
),
// module resolution
nodeResolve(),
commonjs({
include: 'node_modules/**',
}),
// language support
typescript({ tsconfig: 'tsconfig.json' }),
postcss({
extract: false,
minimize: isProduction,
modules: true
}),
// dev server with live reload
...(isProduction ? [] : [
serve({
open: true,
contentBase: 'dist'
}),
livereload('dist')
]),
// preact alias react
alias({
entries: [
{ find: 'react', replacement: 'preact/compat' },
{ find: 'react-dom/test-utils', replacement: 'preact/test-utils' },
{ find: 'react-dom', replacement: 'preact/compat' },
{ find: 'react/jsx-runtime', replacement: 'preact/jsx-runtime' }
]
}),
// replace env variables
replace({
'process.env.NODE_ENV': JSON.stringify(isProduction ? 'production' : 'development'),
preventAssignment: true
})
],
};