diff --git a/CHANGELOG.md b/CHANGELOG.md index 61f2416109..1e52f75a29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ _This release is scheduled to be released on 2025-01-01._ - [core] Add GitHub workflow to run spellcheck a few days before each release. - [core] Add intest flag to index.html to pass to module js for test mode detection (needed by #3630) - [compliments] add support for refreshing remote compliments file, and testcases +- [core] Add export on animation names ### Removed diff --git a/js/animateCSS.js b/js/animateCSS.js index 057d53c72d..a503e1067b 100644 --- a/js/animateCSS.js +++ b/js/animateCSS.js @@ -155,3 +155,4 @@ function removeAnimateCSS (element, animation) { node.classList.remove("animate__animated", animationName); node.style.removeProperty("--animate-duration"); } +module.exports = { AnimateCSSIn, AnimateCSSOut };