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:
+-- [email protected]
+-- [email protected]
+-- [email protected]
`-- [email protected]
What am I missing?