I'm following steps from updating global packages, so I executed npm outdated -g --depth=0
and got:
Package Current Wanted Latest Location
typescript 2.2.2 2.2.2 2.4.1
Then, I executed npm update -g
, but I still got the same output from npm outdated -g --depth=0
.
Executing npm list -g --depth=0
also confirms that the typescript package has not been updated to 2.4.1:
+-- bower@1.8.0
+-- gulp@3.9.1
+-- typescript@2.2.2
`-- typings@2.1.1
What am I missing?