Describe the bug
There are non-trivial differences between anime.js and anime.min.js.
To Reproduce
If you search for "module" in anime.js, you will find one result, used at the end of the file: module.exports = anime;
If you search for "module" in anime.min.js, you will find two results, used at the beginning of the file: !function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):n.anime=e()}
Expected behavior
I would expect anime.min.js to be a minimized version of anime.js, but there is also a difference in functionality.
Why this matters
If anime.min.js isn't behaving as expected, one should be able to look at anime.js to troubleshoot their issue. But there are differences between the two may prevent comparisons between the two.
Additional context
I'm referring to the files in the release of v3.2.2
Describe the bug There are non-trivial differences between
anime.js
andanime.min.js
.To Reproduce
anime.js
, you will find one result, used at the end of the file:module.exports = anime;
anime.min.js
, you will find two results, used at the beginning of the file:!function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):n.anime=e()}
Expected behavior I would expect
anime.min.js
to be a minimized version ofanime.js
, but there is also a difference in functionality.Why this matters If
anime.min.js
isn't behaving as expected, one should be able to look atanime.js
to troubleshoot their issue. But there are differences between the two may prevent comparisons between the two.Additional context