Created
March 7, 2016 02:27
-
-
Save casesandberg/53c3284967ce07c494cd to your computer and use it in GitHub Desktop.
How can I transform file output?
This file contains hidden or 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
| export default function() { | |
| return { | |
| visitor: { | |
| Program(path, { file: { code }}) { | |
| code = transform(code) | |
| }, | |
| }, | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment