-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrollup.config.js
45 lines (42 loc) · 1.17 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 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 sveld from 'sveld';
import pkg from './package.json';
const name = pkg.name
.replace(/^(@\S+\/)?(svelte-)?(\S+)/, '$3')
.replace(/^\w/, (m) => m.toUpperCase())
.replace(/-\w/g, (m) => m[1].toUpperCase());
function createConfig({ file, format, minify = false, docs = false }) {
const isUmd = format === 'umd';
return {
input: 'src/index.js',
output: {
file,
format,
...(isUmd ? { name: 'SvelteToasts', exports: 'named' } : {}),
},
plugins: [
svelte({
emitCss: false,
}),
resolve({
dedupe: (importee) =>
importee === 'svelte' || importee.startsWith('svelte/'),
}),
commonjs(),
minify && terser(),
docs &&
sveld({
markdown: true,
json: true,
}),
],
};
}
export default [
createConfig({ file: pkg.module, format: 'es' }),
createConfig({ file: pkg.main, format: 'umd' }),
createConfig({ file: pkg.unpkg, format: 'umd', minify: true }),
];