英文:
How to update webpack and all loaders at once?
问题
有没有一种方式可以一次性更新webpack和所有的加载器,有没有现成的npm库或脚本?
英文:
Quite tired to update webpack and loaders manually.
Is there a way to update webpack and all loaders at one go, any existing npm lib or script?
答案1
得分: 1
你可以使用 npm-check-updates
工具,它允许你设置一个过滤器
npx npm-check-updates --upgrade --filter "webpack*, *-loader"
或者你可以以交互模式运行它,这样你可以选择要更新的包
npx npm-check-updates --format group --interactive
英文:
You could use npm-check-updates
which allows you to set a filter
npx npm-check-updates --upgrade --filter "webpack*, *-loader"
Or you run it in interactive mode, so you can select which packages to update
npx npm-check-updates --format group --interactive
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论