-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
78 lines (74 loc) · 1.35 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
66
67
68
69
70
71
72
73
74
75
76
77
78
import typescript from 'rollup-plugin-typescript';
import nodeResolve from 'rollup-plugin-node-resolve';
// import commonjs from 'rollup-plugin-commonjs';
// import es3 from 'rollup-plugin-es3'
import pkg from './package.json';
let banner = `/*!
* ${pkg.name} v${pkg.version}
* Homepage ${pkg.homepage}
* License ${pkg.license}
*/
`;
let external = Object.keys(pkg.dependencies);
let plugins_typeES2015 = typescript({
target: 'ES2015',
module: 'ES2015',
removeComments: true
});
let out_BitMatrix = [
{
input: './src/index.ts',
plugins: [plugins_typeES2015],
output: [
{
file: pkg.module,
format: 'es',
banner: banner
},
{
file: pkg.main,
format: 'cjs',
exports: 'named'
}
],
external
},
{
input: pkg.module,
plugins: [nodeResolve()],
output: [
{
file: pkg.browser,
format: 'umd',
name: 'BitMatrix',
exports: 'named'
}
]
}
];
// let out_AllMatrix = [
// {
// input: './src/index.ts',
// plugins: [plugins_typeES2015],
// output: [
// {
// file: './lib/index.es.js',
// format: 'es',
// banner: banner
// }
// ],
// external
// },
// {
// input: './lib/index.es.js',
// plugins: [nodeResolve()],
// output: [
// {
// file: './lib/index.js',
// name: 'AllMatrix',
// format: 'umd'
// }
// ]
// }
// ];
export default [...out_BitMatrix];