-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
66 lines (65 loc) · 1.51 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
import scss from 'rollup-plugin-scss';
import babel from '@rollup/plugin-babel';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
import path from 'path';
import includePaths from 'rollup-plugin-includepaths';
import json from '@rollup/plugin-json';
// import { terser } from 'rollup-plugin-terser';
import serve from 'rollup-plugin-serve';
import copy from 'rollup-plugin-copy';
import webWorkerLoader from 'rollup-plugin-web-worker-loader';
export default {
input: [
'src/index.js'
],
output: [
{
file: 'build/index.js',
format: 'es',
sourcemap: true
}
],
plugins: [
replace({
'process.env.NODE_ENV': JSON.stringify('development'),
preventAssignment: true
}),
webWorkerLoader({
targetPlatform: 'browser',
sourceMap: true
}),
babel({
babelHelpers: 'bundled',
configFile: path.resolve(__dirname, 'babel.config.js')
}),
resolve({ browser: true }),
commonjs({
include: /node_modules/,
sourceMap: true
}),
includePaths({
paths: ['src']
}),
json({ compact: true }),
scss({
output: 'build/index.css'
}),
// terser(),
copy({
targets: [
{ src: 'public/**', dest: 'build' },
],
verbose: true
}),
serve({
open: false,
verbose: true,
historyApiFallback: true,
contentBase: 'build',
host: 'localhost',
port: 3000
})
]
};