forked from riot/rollup-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.mjs
More file actions
63 lines (60 loc) · 1.59 KB
/
Copy pathrollup.config.mjs
File metadata and controls
63 lines (60 loc) · 1.59 KB
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
import riot from 'rollup-plugin-riot'
import nodeResolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import terser from '@rollup/plugin-terser'
import riotRegister from 'rollup-plugin-riot-register'
import serve from 'rollup-plugin-serve-proxy'
import livereload from 'rollup-plugin-livereload'
const devMode = 'production' !== process.env.mode //DP: set for release target in package.json
console.log( `${ devMode ? 'development' : 'production' } mode bundle` )
export default {
input: 'src/index.js',
watch: {
include: './src/**',
clearScreen: false
},
output: {
file: 'dist/bundle.js',
sourcemap: devMode ? 'inline' : false,
format: 'iife',
plugins: [
terser( {
ecma: 2020,
mangle: { toplevel: true },
compress: {
module: true,
toplevel: true,
unsafe_arrows: true,
drop_console: !devMode,
drop_debugger: !devMode
},
output: {
quote_style: 1,
comments: devMode ? 'all' : false
}
} )
]
},
plugins: [
nodeResolve( { browser: true } ),
riot(),
commonjs(),
riotRegister( [ './src/**/*.riot' ] ),
devMode && serve( {
contentBase: '.',
// Options used in setting up server
host: 'localhost',
port: 3000,
// Set up simple proxy
// this will route all traffic starting with
// `/api` to http://localhost:8181/api
proxy: {
api: 'http://localhost:8181'
}
} ),
devMode && livereload( {
port: 3002,
delay: 200
} )
]
}