Created
April 3, 2016 19:04
-
-
Save jamestalmage/885e1d0d732557cfb5cf854aee04fd19 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
babel.transform(`foo()`, { | |
plugins: [ | |
function () { | |
return { | |
visitor: { | |
CallExpression() { | |
console.log('plugin 1'); | |
} | |
} | |
} | |
}, | |
function () { | |
return { | |
visitor: { | |
CallExpression() { | |
console.log('plugin 2'); | |
} | |
} | |
} | |
} | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see: