forked from ssciwr/svelte-easydb-detail-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
45 lines (44 loc) · 1 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
import copy from 'rollup-plugin-copy';
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 postcss from 'rollup-plugin-postcss';
import { sveltePreprocess } from 'svelte-preprocess';
export default {
input: './src/bundle.js',
output: {
file: 'bundle/easydb.js',
format: 'iife',
name: 'EasyDBDetailView',
inlineDynamicImports: true
},
plugins: [
copy({
targets: [
{
src: 'public/pregen/*',
dest: 'bundle/pregen'
}
]
}),
svelte({
emitCss: false,
preprocess: sveltePreprocess({
postcss: true, // Use PostCSS to process TailwindCSS
}),
compilerOptions: {
customElement: true
}
}),
postcss({
extract: "easydb.css"
}),
resolve({
browser: true,
dedupe: ['svelte', 'flowbite-svelte']
}),
commonjs(),
terser()
]
};