micahstubbs commented on issue #2114: URL: https://github.com/apache/helix/issues/2114#issuecomment-1135479354
Let's work through these steps: https://github.com/angular-eslint/angular-eslint#migrating-an-angular-cli-project-from-codelyzer-and-tslint # Step 1 - Add relevant dependencies The first step is to run the schematic to add @angular-eslint to your project: ```py ng add @angular-eslint/schematics ℹ Using package manager: yarn ✔ Found compatible package version: @angular-eslint/[email protected]. ✔ Package information loaded. The package @angular-eslint/[email protected] will be installed and executed. Would you like to proceed? Yes error @typescript-eslint/[email protected]: The engine "node" is incompatible with this module. Expected version "^12.22.0 || ^14.17.0 || >=16.0.0". Got "12.20.2" error Found incompatible module. ✖ Package install failed, see above. ``` Ah, let's update node: ```py nvm use 12.22.0 ``` -- 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]
