surveyjs_angular_cli
surveyjs_angular_cli copied to clipboard
master branch does not install or run using npm/ng
Running npm i
gives me this:
$ npm i npm WARN Invalid version: "1.1" npm WARN surveyjs_angular_cli No description npm WARN surveyjs_angular_cli No repository field. npm WARN surveyjs_angular_cli No README data npm WARN surveyjs_angular_cli No license field.
up to date in 0.592s found 0 vulnerabilities
and installs nothing.
In the package.json file, update "version": "1.1" as "version": "1.1.0" The version should be of the format X.Y.Z as per semantic versioning .
Also, I executed the below commands (in sequence) to fix angular cli version related errors.
npm install -g @angular/cli npm install @angular/cli ng update @angular/cli npm i [email protected] --save-dev --save-exact
Had to do this as well
ng update @angular/cli --migrate-only --from=1.6.8