issues
search
GH1995
/
articles
blog
https://gh1995.github.io
2
stars
0
forks
source link
npm trick
#53
Open
GH1995
opened
4 years ago
GH1995
commented
4 years ago
~
会匹配最近的小版本依赖包,比如
~1.2.3
会匹配所有
1.2.x
版本,但是不包括
1.3.0
^
会匹配最新的大版本依赖包,比如
^1.2.3
会匹配所有
1.x.x
的包,包括
1.3.0
,但是不包括
2.0.0
GH1995
commented
4 years ago
常用模块
require-dir
debug
config
~
会匹配最近的小版本依赖包,比如~1.2.3
会匹配所有1.2.x
版本,但是不包括1.3.0
^
会匹配最新的大版本依赖包,比如^1.2.3
会匹配所有1.x.x
的包,包括1.3.0
,但是不包括2.0.0