-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
42 lines (40 loc) · 1017 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
40
41
42
import banner from 'rollup-plugin-banner';
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
import typescript from 'rollup-plugin-typescript';
const bannerText = [
'EdgeRouter Throughput',
'<%= pkg.description %>',
'',
'Version <%= pkg.version %>',
'By <%= pkg.author %>',
'',
'License <%= pkg.license %>',
'',
'This is an autogenerated file. DO NOT EDIT!',
].join('\n');
export default [
{
input: './src/MMM-edgerouter-throughput.ts',
plugins: [
typescript(),
resolve(),
commonjs(),
banner(bannerText),
],
output: {
file: './MMM-edgerouter-throughput.js',
format: 'iife',
},
}, {
input: './src/node_helper.ts',
plugins: [
typescript(),
banner(bannerText),
],
output: {
file: './node_helper.js',
format: 'umd',
},
},
]