像这样在package.json
中引用github存储库时:
"my-package": "https://user:password@github.com/user-name/my-package.git"
命令npm outdated
产生以下信息:
Package Current Wanted Latest Location
my-package 1.0.0 git git screener
该引用语法中是否可以指定版本?如果不是,是否有办法使NPM禁止报告软件包过时?
已通过Node.js v12.6.0和NPM v6.9.0测试
答案 0 :(得分:1)
{。{3}}
中提到的package.json文档Git网址的格式为:
<protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish> | #semver:<semver>]
<protocol>
是git
,git+ssh
,git+http
,git+https
或git+file
之一。
这可以解释错误消息的“ Wanted git
”部分。