如何一次性更新webpack和所有加载器?

huangapple go评论64阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年7月13日 21:11:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/76679755.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定