Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created October 26, 2016 13:13
Show Gist options
  • Save jacobp100/f49538bd6b252b559a9a8c75eb39b770 to your computer and use it in GitHub Desktop.
Save jacobp100/f49538bd6b252b559a9a8c75eb39b770 to your computer and use it in GitHub Desktop.
const { plugins } = require('babylon/lib/parser');
const pluginName = 'swift-blocks';
const plugin = createSwiftBlocksPlugin();
plugins[pluginName] = 'swift-blocks';
module.exports = () => ({
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push(pluginName);
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment