Closed peterkogo closed 5 months ago
Fixes #137
Updated rollup and its plugins to newest versions and replaced rollup-plugin-terser with official @rollup/plugin-terser.
rollup-plugin-terser
@rollup/plugin-terser
Everything should work the same as before. The generated build output only differs by one line, probably due to a updated terser version.
Before:
(global = global || self, global.RBush = factory());
After:
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.RBush = factory());
Apologies for a late response and thanks for the PR — I'll do some follow work on modernizing the repo now and will release it as v4.
This is huge! Thanks @mourner ✌️
Fixes #137
Updated rollup and its plugins to newest versions and replaced
rollup-plugin-terser
with official@rollup/plugin-terser
.Everything should work the same as before. The generated build output only differs by one line, probably due to a updated terser version.
Before:
After: