You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prior to this change, in the previous commit, the `tinyify` package was
upgraded. This package minified the js and css.
However, after the update, the javascript was no longer functioning.
This manifested itself by errors in the browser console.
This had two root causes:
* The javascript in EB used circular dependencies.
* Even after fixing that, the tinyify package simply broke the
javascript by removing functions that could not be removed.
This change reworks the javascript to remove the circular dependencies.
It also replaces the unmaintained tinyify plugin by using the `terser` directly.
@@ -13,7 +13,7 @@ import {getData} from '../utility/getData';
13
13
*
14
14
* Note: many problems were solved with HTML & CSS. JS should be a last resort, as not everyone has JS. See https://kryogenix.org/code/browser/everyonehasjs.html as to why to avoid JS.
0 commit comments