这是我的package.json:
{
"name": "pr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"typescript": "^2.0.3"
}
}
当我运行npm install
时,我得到版本2.0.8
⇒ npm install
pr@1.0.0 /Users/shlomitc/WebstormProjects/pr
└── typescript@2.0.8
当我运行npm update
时,我得到版本2.1.1!
⇒ npm update
pr@1.0.0 /Users/shlomitc/WebstormProjects/pr
└── typescript@2.1.1
为什么npm安装和更新的行为有所不同?
答案 0 :(得分:0)
根据npm的人说,这是正确的行为,它在文档中描述得不够好。
npm install
安装latest
标记的版本,目前为2.0.8
npm update
安装最高版本,目前为2.1.1