npm 如何弃用私有github包版本

yk9xbfzb  于 2023-08-06  发布在  Git
关注(0)|答案(1)|浏览(175)

我有一个私有的github包,有多个版本,我想在旧版本中添加deprecate notice。我试过下面的npm命令不起作用
第一个月
但我得到下面的错误

npm ERR! code E404
npm ERR! 404 Not Found - GET https://npm.pkg.github.com/privateregistry/my-package?write=true - Package [my-package] was not found
npm ERR! 404 
npm ERR! 404  'my-package@1.0.10' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

字符串

eqfvzcg8

eqfvzcg81#

访问https://www.npmjs.com/package/PACKAGE_NAME/access,在页面的末尾有一个“Deprecate package”按钮。但是,它似乎不允许输入自定义的弃用消息。

相关问题