micahstubbs commented on issue #2088: URL: https://github.com/apache/helix/issues/2088#issuecomment-1124185401
```py NG_DISABLE_VERSION_CHECK=1 npx @angular/cli@8 update @angular/cli@8 @angular/core@8 The installed Angular CLI version is older than the latest stable version. Installing a temporary version to perform the update. Installing packages for tooling via npm. Installed packages for tooling via npm. Node.js version v10.9.0 detected. The Angular CLI requires a minimum Node.js version of either v12.20, v14.15, or v16.10. Please update your Node.js version or visit https://nodejs.org/ for additional instructions. ``` Okay, let's temporarily use [email protected] ```py nvm use 12.20 Now using node v12.20.2 (npm v6.14.11) ``` Now, this is better: ```py NG_DISABLE_VERSION_CHECK=1 npx @angular/cli@8 update @angular/cli@8 @angular/core@8 The installed Angular CLI version is older than the latest stable version. Installing a temporary version to perform the update. Installing packages for tooling via npm. Installed packages for tooling via npm. Using package manager: 'npm' Collecting installed dependencies... Found 65 dependencies. Fetching dependency metadata from registry... Package '@angular/cli' is already up to date. Package '@angular/core' is already up to date. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
