forked from jayked/MMM-GoogleTasks
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrollup.config.mjs
44 lines (42 loc) · 1.06 KB
/
rollup.config.mjs
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
//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';
import scss from 'rollup-plugin-scss'
// 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-GoogleTasks.ts',
plugins: [
typescript(),
resolve(),
commonjs(),
scss({
fileName: 'MMM-GoogleTasks.css'
})
],
output: {
file: './MMM-GoogleTasks.js',
format: 'iife',
},
}, {
input: './src/node_helper.ts',
plugins: [
typescript()
],
output: {
file: './node_helper.js',
format: 'umd',
},
},
]