npm 升级Angular和项目后找不到编译器ngcc模块

nx7onnlm  于 2022-11-14  发布在  Angular
关注(0)|答案(7)|浏览(172)

我刚刚将Angular cli和我的一个项目从7.0.7升级到了7.1.0。
我关注了this post和@Francesco Borzi的回答。
现在我已经尝试使用以下代码运行我的项目:

ng serve --proxy-config proxy.conf.json

收到了这条信息
无法找到模块“”。错误:无法找到
模块'@Angular /编译器-客户端/ngcc'

at Function.Module._resolveFilename (internal/modules/cjs/loader.js:649:15)

at Function.Module._load (internal/modules/cjs/loader.js:575:25)

at Module.require (internal/modules/cjs/loader.js:705:19)

at require (internal/modules/cjs/helpers.js:14:16)

at Object.<anonymous> (/Users/path/myproject/node_modules/@ngtools/webpack/src/ngcc_processor.js:10:16)

at Module._compile (internal/modules/cjs/loader.js:799:30)

at Object.Module._extensions..js (internal/modules/cjs/loader.js:810:10)

at Module.load (internal/modules/cjs/loader.js:666:32)

at tryModuleLoad (internal/modules/cjs/loader.js:606:12)

at Function.Module._load (internal/modules/cjs/loader.js:598:3)

at Module.require (internal/modules/cjs/loader.js:705:19)

at require (internal/modules/cjs/helpers.js:14:16)

at Object.<anonymous> (/Users/path/myproject/node_modules/@ngtools/webpack/src/angular_compiler_plugin.js:23:26)

at Module._compile (internal/modules/cjs/loader.js:799:30)

at Object.Module._extensions..js (internal/modules/cjs/loader.js:810:10)

at Module.load (internal/modules/cjs/loader.js:666:32)

这是我的package.json

{
  "name": "myproject",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~7.0.0",
    "@angular/cdk": "7.3.7",
    "@angular/common": "~7.0.0",
    "@angular/compiler": "~7.0.0",
    "@angular/core": "~7.0.0",
    "@angular/forms": "~7.0.0",
    "@angular/http": "~7.0.0",
    "@angular/material": "^7.3.7",
    "@angular/platform-browser": "~7.0.0",
    "@angular/platform-browser-dynamic": "~7.0.0",
    "@angular/router": "~7.0.0",
    "angular": "^1.7.8",
    "bootstrap": "^4.3.1",
    "core-js": "^2.5.4",
    "font-awesome": "^4.7.0",
    "hammerjs": "^2.0.8",
    "jquery": "1.9.1",
    "ngx-gallery": "^5.9.1",
    "popper.js": "^2.0.0-next.4",
    "rxjs": "~6.3.3",
    "zone.js": "~0.8.26"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "^0.800.1",
    "@angular/cli": "^8.0.1",
    "@angular/compiler-cli": "~7.0.0",
    "@angular/language-service": "~7.0.0",
    "@types/jasmine": "~2.8.8",
    "@types/jasminewd2": "~2.0.3",
    "@types/node": "~8.9.4",
    "codelyzer": "~4.5.0",
    "jasmine-core": "~2.99.1",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~3.0.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.1",
    "karma-jasmine": "~1.1.2",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.11.0",
    "typescript": "~3.1.1"
  }
}
gxwragnw

gxwragnw1#

在package.json文件中,将devDependencies中的@angular/cli版本更改为:

"@angular/cli": "7.1.0"

您的项目和devDependency之间的版本不匹配。您可能使用了npm audit fix --force或类似的自动更新命令,这可能更新了“package.json”文件中的devDependencies。
您也可以在devDependencies中使用angular cli版本7.3.5。只要确保开发版本和devDependencies中提到的版本是兼容的。请注意,本地anglular/cli版本在这里并不重要。
更新:修改完成后,删除package-lock.json,删除node modules文件夹,运行npm install重新安装模块。

iq3niunx

iq3niunx2#

我得到了同样的错误,并通过更新@angular/cli global解决了这个问题。

npm uninstall -g @angular/cli
npm install -g @angular/cli

然后尝试创建新的应用程序,并将一些依赖项从package.json文件复制到当前项目,因为npm安装不会安装最新版本的软件包。然后

npm install

这解决了我的问题,但后来我找到了答案:update angular

epfja78i

epfja78i3#

所有这些对我来说都不起作用,我试图从Angular 7升级到Angular 8,这里是我的工作解决方案:

  1. npm已过时。
  2. npm更新。
  3. npm安装-g npm检查。
  4. npm-检查-u -跳过-未使用。
    1.使用npm-check升级所有过时的软件包,sass除外。
  5. npm更新。
    1.如果您的应用程序上有ViewChild,请务必将它们编辑为@ViewChild(<name>, {static: true})
dvtswwa3

dvtswwa34#

希望这将解决您的安装相关问题

ng update @angular/cli @angular/core
c3frrgcw

c3frrgcw5#

下面就试试看:1- ng serve不工作或ngcc失败,只需输入:

the project folder -- app folder -- node_modules -- @angular -- compiler-cli -- ngcc

并删除ngcc锁定文件。然后ng服务,它将工作。

polhcujo

polhcujo6#

我卸载并重新安装了@angular/cli,但仍然在npm i上遇到错误。
所以我改用了npm ci(clean install的缩写),* 但仍然收到了错误。*
事情看起来真的很奇怪,所以我求助于一个似乎可以解决大多数令人费解的行为的策略:我打开了一个新的终端窗口,这次运行的是npm ci; ng serve
我希望我有一个解释是怎么回事,但我真的没有。我最好的猜测是一些坏的数据被缓存和一个新的查找需要运行。在任何情况下,请不要把答案缺乏详细说明,我张贴的那些谁是绝望地试图继续他们的工作的缘故。

iqjalb3h

iqjalb3h7#

在我的例子中,解决方案是将脚本中引用的文件夹名称更改为不使用任何字符,如“&"。
我还尝试通过powershell vs cmd运行,并确保在执行任何命令时,一次只运行一个进程,以减少锁定

相关问题