diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-06-12 10:32:08 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-06-12 10:32:08 +0200 |
commit | aaedc5ac2893555e3cb855659b132afafddfb724 (patch) | |
tree | 76d85747e4fa6a69fd2cf34e95534d27c13cf9de /.config/rollup.config.js | |
parent | b4636e04038897e3deefff9e680ed52de283ff02 (diff) | |
download | svg.js-aaedc5ac2893555e3cb855659b132afafddfb724.tar.gz svg.js-aaedc5ac2893555e3cb855659b132afafddfb724.zip |
update changelog, revert umd wrapper config
Diffstat (limited to '.config/rollup.config.js')
-rw-r--r-- | .config/rollup.config.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.config/rollup.config.js b/.config/rollup.config.js index 5e3667b..8391ba0 100644 --- a/.config/rollup.config.js +++ b/.config/rollup.config.js @@ -96,8 +96,7 @@ const config = (node, min, esm = false) => ({ : node ? './dist/svg.node.js' : min ? './dist/svg.min.js' : './dist/svg.js', - // See https://stackoverflow.com/questions/54489234/trouble-loading-svgdotjs-svg-js-3-0-11-in-typescript-test-code-managed-by-j - format: esm ? 'esm' : node ? 'cjs' : 'umd', + format: esm ? 'esm' : node ? 'cjs' : 'iife', name: 'SVG', sourcemap: true, banner: headerLong, |