1
resposta

The Schematic workflow failed. See above.

- Installing packages...npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: banco@0.0.0
npm ERR! Found: jasmine-core@3.6.0
npm ERR! node_modules/jasmine-core
npm ERR!   dev jasmine-core@"~3.6.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer jasmine-core@">=3.8" from karma-jasmine-html-reporter@1.7.0
npm ERR! node_modules/karma-jasmine-html-reporter
npm ERR!   dev karma-jasmine-html-reporter@"^1.5.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\Arthur\AppData\Local\npm-cache\eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Arthur\AppData\Local\npm-cache\_logs\2021-07-20T12_33_20_008Z-debug.log
× Package install failed, see above.
The Schematic workflow failed. See above.

Erro ao tentar criar um projeto, instalada versão de Angular recomendada

1 resposta

Olá José, tudo bem?

Com o Angular e o Node, nas versões informadas, tente os passos abaixo:

  1. Crie o projeto: ng new bytebank
  2. Dentro do diretório do seu projeto, abra o arquivo package.json. Em devDependencies, altere a versão do "jasmine-core" de 3.6.0 para 3.8.0 e o "karma-jasmine-html-reporter" de 1.5.0 para 1.7.0 e salve o arquivo.
  3. Verifique se no diretório do seu projeto existe a pasta node-modules e o arquivo package-lock.json. Se sim, apague ambos!
  4. Rode o comando: npm install
  5. Após concluir a instalação das dependências, rode o comando ng serve

Se tudo correr conforme esperado, o build do projeto será realizado e você irá conseguir acessar a sua aplicação via browser na url: http://localhost:4200/

Espero que ajude-o!