-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathrollup.config.js
65 lines (59 loc) · 1.49 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
import svelte from 'rollup-plugin-svelte'
import serve from 'rollup-plugin-serve'
import commonjs from '@rollup/plugin-commonjs'
import resolve from '@rollup/plugin-node-resolve'
import livereload from 'rollup-plugin-livereload'
import { terser } from 'rollup-plugin-terser'
import { svelteSVG } from 'rollup-plugin-svelte-svg'
import json from '@rollup/plugin-json'
import sveltePreprocess from 'svelte-preprocess'
const production = !process.env.ROLLUP_WATCH
const plugins = [
svelte({
emitCss: false,
preprocess: sveltePreprocess(),
compilerOptions: {
dev: !production
}
}),
svelteSVG({
svgo: {}
}),
resolve({
browser: true,
dedupe: ['svelte']
}),
json(),
commonjs(),
// In dev mode, call `npm run start` once
// the bundle has been generated
!production && serve({ port: 6871, host: '127.0.0.1', contentBase: ['dist', 'public'] }),
// Watch the `public` directory and refresh the
// browser on changes when not in production
!production && livereload('public'),
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser()
]
export default [
{
input: 'src/client/main.js',
output: {
sourcemap: true,
format: 'iife',
name: 'discuss',
file: 'dist/discuss.js'
},
plugins
},
{
input: 'src/client/admin.js',
output: {
sourcemap: true,
format: 'iife',
name: 'discussAdmin',
file: 'dist/discuss.admin.js'
},
plugins
}
]