deploy WIP

This commit is contained in:
Jan Prochazka
2020-03-14 09:54:34 +01:00
parent 0c627ea92e
commit 40bc48e80d
13 changed files with 855 additions and 476 deletions

View File

@@ -0,0 +1,16 @@
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
export default {
input: 'src/index.js',
output: {
file: 'bundle.js',
format: 'cjs',
},
plugins: [
resolve(),
commonjs(),
json()
]
};