You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To speed up build time, we have added an option to keep a cache of npm packages.
Enabling this option will reduce network traffic and parallel-build times.
The npm cache for all this repository will take up about 7.5 GB of storage.
This option is available in the configuration menu of "node" package.
Known Issues:
The following error occurs
npm ERR! notarget No matching version found for [NPM-MODULE].
npm ERR! ERESOLVE unable to resolve dependency tree
That is an issue with the stale cache. It does not update to newer npm packages.
The workaround is to remove the matching npm cache.
Example
If you have this issue with node-npm-check-updates, please remove the cache as follows.
cd [NODEJS_NPM_CACHE_DIR]
rm -rf npm-cache-npm-check-updates
The text was updated successfully, but these errors were encountered:
To speed up build time, we have added an option to keep a cache of npm packages.
Enabling this option will reduce network traffic and parallel-build times.
The npm cache for all this repository will take up about 7.5 GB of storage.
This option is available in the configuration menu of "node" package.
Known Issues:
The following error occurs
That is an issue with the stale cache. It does not update to newer npm packages.
The workaround is to remove the matching npm cache.
Example
If you have this issue with node-npm-check-updates, please remove the cache as follows.
cd [NODEJS_NPM_CACHE_DIR] rm -rf npm-cache-npm-check-updates
The text was updated successfully, but these errors were encountered: