During migration from fibers to promises, we've lost one ! in the check if npm package has typings in @types repo.
This led to incorrect behavior:
typings of packages, which are available in @types, are not installed (for example lodash).
trying to install plugin, which does not have typing in @types leads to error (something like Error while installing dependency: Command npm.cmd failed with exit code 4294963238.).
Fix the check (add the missing !) which will fix the incorrect behavior.
During migration from fibers to promises, we've lost one
!
in the check if npm package has typings in@types
repo. This led to incorrect behavior:@types
, are not installed (for examplelodash
).@types
leads to error (something likeError while installing dependency: Command npm.cmd failed with exit code 4294963238.
).Fix the check (add the missing
!
) which will fix the incorrect behavior.