fix: roll it up so it can be used from nodejs (i need it for idxlibs)

This commit is contained in:
yj 2021-02-04 13:49:35 -06:00
parent 4be2accdb2
commit f2ee798f93

7
rollup.config.js Normal file
View File

@ -0,0 +1,7 @@
export default {
input: 'src/main.js',
output: {
file: 'bundle.js',
format: 'cjs'
}
};