-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrollup.config.js
More file actions
35 lines (32 loc) · 730 Bytes
/
Copy pathrollup.config.js
File metadata and controls
35 lines (32 loc) · 730 Bytes
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
import resolve from '@rollup/plugin-node-resolve';
import svelte from 'rollup-plugin-svelte';
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());
export default {
input: 'src/index.js',
output: [
{ file: pkg.module, format: 'es' },
{ file: pkg.main, format: 'umd', name: 'InfiniteLoading' },
],
plugins: [
svelte({ emitCss: false }),
resolve()
],
/* tests
{
input: 'test/src/index.js',
output: {
file: 'test/public/bundle.js',
format: 'iife',
},
plugins: [
resolve(),
commonjs(),
svelte()
],
},
*/
};