diff options
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, |