I am trying to use ES2017 async/await syntax with Babel.
In package.json
, I have
"babel": {
"plugins": [
"babel-plugin-transform-async-to-generator"
],
"presets": [
"es2015"
]
}
//...
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0"
}
The code I am trying to work with is
src/index.js
require("babel-polyfill");
async function foo() {
return 10;
}
and my built file is
dist/build.js
"use strict";
var foo = function () {
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
return _context.abrupt("return", 10);
case 1:
case "end":
return _context.stop();
}
}
}, _callee, this);
}));
return function foo() {
return _ref.apply(this, arguments);
};
}();
function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { return step("next", value); }, function (err) { return step("throw", err); }); } } return step("next"); }); }; }
require("babel-polyfill");
While running the build.js I get this error
ReferenceError: regeneratorRuntime is not defined
However, in the build.js, if I move the require("babel-polyfill");
line to the top, it works. But I can't manually do that every time.
So, how to do I use the async/await syntax with babel?