[babel] skip runtime transform for node code

without this, plugins outside of the kibana code base will need to install the babel-runtime.
This commit is contained in:
spalger 2016-02-11 20:31:31 -07:00
parent 25387899a6
commit cd09048fc4

View file

@ -12,3 +12,5 @@ exports.webpack = {
};
exports.node = cloneDeep(exports.webpack);
exports.node.optional = ['asyncToGenerator'];
exports.node.blacklist = ['regenerator'];