我很困惑...
console.log('metro bundler start');
console.log(require.resolve("./scripts/script.js"));
module.exports = (async () => {
...
console.log('metro bundler end');
})();
的{{3}}说,该软件包已被弃用,而赞成@babel/polyfill
和core-js
(babel的文档)[documentation告诉您安装regenerator-runtime
作为运行时依赖项。...
如果我没有安装@babel/polyfill
,而是同时安装@babel/polyfill
和core-js
作为运行时依赖项,它似乎可以工作(regenerator-runtime
是否需要是运行时依赖项? )
core-js
的文档是否过时?还是我缺少部署时会咬回去的东西?