From f2ee798f93f22ebf5ac18b1263a5d43ebed5c09e Mon Sep 17 00:00:00 2001 From: yj Date: Thu, 4 Feb 2021 13:49:35 -0600 Subject: [PATCH] fix: roll it up so it can be used from nodejs (i need it for idxlibs) --- rollup.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 rollup.config.js diff --git a/rollup.config.js b/rollup.config.js new file mode 100644 index 0000000..e19a4e6 --- /dev/null +++ b/rollup.config.js @@ -0,0 +1,7 @@ +export default { + input: 'src/main.js', + output: { + file: 'bundle.js', + format: 'cjs' + } +}; \ No newline at end of file