add babel-plugin-syntax-function-sent plugin

This commit is contained in:
Sebastian McKenzie
2015-11-18 20:32:11 -08:00
parent 8fd543edae
commit 94887d35e1
4 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export default function () {
return {
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("functionSent");
}
};
}