-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
39 lines (38 loc) · 1001 Bytes
/
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
import { terser } from 'rollup-plugin-terser';
export default [
{
input: 'src/index.js',
output: [
{ file: 'lib/lnagb.js', format: 'esm' },
{ file: 'lib/lnagb.min.js', format: 'esm', plugins: [ terser() ] },
]
},
{
input: 'src/equations/index.js',
output: [
{ file: 'lib/lnagb.equations.js', format: 'esm' },
{ file: 'lib/lnagb.equations.min.js', format: 'esm', plugins: [ terser() ] },
]
},
{
input: 'src/matrices/index.js',
output: [
{ file: 'lib/lnagb.matrices.js', format: 'esm' },
{ file: 'lib/lnagb.matrices.min.js', format: 'esm', plugins: [ terser() ] },
]
},
{
input: 'src/vectors/index.js',
output: [
{ file: 'lib/lnagb.vectors.js', format: 'esm' },
{ file: 'lib/lnagb.vectors.min.js', format: 'esm', plugins: [ terser() ] },
]
},
{
input: 'src/index.js',
output: [
{ file: 'lib/umd/lnagb.js', format: 'umd', name: 'lnagb' },
{ file: 'lib/umd/lnagb.min.js', format: 'umd', name: 'lnagb', plugins: [ terser() ] },
]
}
];