标签: node.js github npm
我已发布了一个包含npm的软件包,我也在github上发布了该软件包。现在我修复了包中的错误,我迷路了,我该如何进行更新?使用npm publish或git commit发布新版本?或两者?什么是正确的程序?
npm
github
npm publish
git commit
答案 0 :(得分:2)
如果您想修复npm包中的错误,请增加版本号并发布。
如果您想修复git存储库中的错误,请执行git commit && git push。
git commit && git push
在大多数情况下,您可能希望同时执行这两项操作。