diff --git a/startup-helper/BabelCacheBuster.js b/startup-helper/BabelCacheBuster.mjs similarity index 95% rename from startup-helper/BabelCacheBuster.js rename to startup-helper/BabelCacheBuster.mjs index 9c28bdb9..f744d4a6 100644 --- a/startup-helper/BabelCacheBuster.js +++ b/startup-helper/BabelCacheBuster.mjs @@ -1,7 +1,7 @@ // Babel plugin that adds CACHE_BUST_COMMENT to every function body. const CACHE_BUST_COMMENT = "ThouShaltNotCache"; -module.exports = function ({ types: t }) { +export default function({ types: t }) { return { visitor: { Function(path) {