webpack().run()如何同步执行?
问题
const compiler1 = webpack(config)
const compiler2 = webpack(config2)
const build = async () => {
await compiler1.run()
console.log('continue...')
await compiler2.run()
}
# 预期
compiler1.run()执行
compiler1.run()执行完成
输出 continue...
compiler2.run()执行
...
# 实际
输出 continue...
compiler1.run()执行
compiler1.run()完成
compiler2.run()执行
...
怎么可以得到我的预期结果,通过async await
方式
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要进行包装.