Skip to content

Commit 0780cc6

Browse files
authored
Convert startup-helper/BabelCacheBuster.js to esm (WebKit#163)
1 parent e05443c commit 0780cc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

startup-helper/BabelCacheBuster.js renamed to startup-helper/BabelCacheBuster.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Babel plugin that adds CACHE_BUST_COMMENT to every function body.
22
const CACHE_BUST_COMMENT = "ThouShaltNotCache";
33

4-
module.exports = function ({ types: t }) {
4+
export default function({ types: t }) {
55
return {
66
visitor: {
77
Function(path) {

0 commit comments

Comments
 (0)