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
The current detection is based on globally installed variables, like window.jQuery.some.version. This used to work pretty well, but these days more and more pages are switching to bundlers like webpack.
I think it might be possible to look at how webpack et al are working and inspecting the modules that are loaded from there.
"tree shaking" (dead code elimination) from rollup.js might also be interesting in this regard.
The text was updated successfully, but these errors were encountered:
The current detection is based on globally installed variables, like
window.jQuery.some.version
. This used to work pretty well, but these days more and more pages are switching to bundlers like webpack.I think it might be possible to look at how webpack et al are working and inspecting the modules that are loaded from there.
"tree shaking" (dead code elimination) from rollup.js might also be interesting in this regard.
The text was updated successfully, but these errors were encountered: