forked from fiatjaf/etlapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
55 lines (48 loc) · 1.16 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
import svelte from 'rollup-plugin-svelte'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import {terser} from 'rollup-plugin-terser'
import css from 'rollup-plugin-css-only'
const production = !!process.env.PRODUCTION
const bundleEntry = appName => ({
input: `${appName}/src/main.js`,
output: {
sourcemap: true,
format: 'iife',
name: 'app',
file: `${appName}/static/bundle.js`
},
plugins: [
svelte({
compilerOptions: {dev: !production}
}),
resolve({
browser: true,
dedupe: importee =>
importee === 'svelte' || importee.startsWith('svelte/'),
preferBuiltins: false
}),
commonjs(),
css({output: 'bundle.css'}),
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser()
],
watch: {
clearScreen: false
}
})
export default process.env.APPNAME
? bundleEntry(process.env.APPNAME)
: [
'banners',
'chainmarket',
'smt',
'features',
'lichess',
's4a',
'kad',
'predictions',
'predictions2',
'auction'
].map(bundleEntry)