From b32246fa0a2552f7584072fb095119245ff0e577 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Thu, 16 Jun 2022 17:03:49 +1000 Subject: [PATCH] Change exported name to `waku` for UMD and CJS --- rollup.cjs.config.js | 1 + rollup.config.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/rollup.cjs.config.js b/rollup.cjs.config.js index cb6ad03637..7c8f189ab3 100644 --- a/rollup.cjs.config.js +++ b/rollup.cjs.config.js @@ -7,6 +7,7 @@ export default { output: { file: "dist/cjs/index.cjs", format: "cjs", + name: "waku", }, plugins: [ commonjs(), diff --git a/rollup.config.js b/rollup.config.js index cb70f33644..90f804398f 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -7,7 +7,7 @@ export default { output: { file: "dist/umd/index.js", format: "umd", - name: "jswaku", + name: "waku", }, plugins: [ commonjs(),