- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我刚刚将 Angular cli 和我的一个项目从 7.0.7 升级到 7.1.0。
我关注了this post和 @Francesco Borzi's回答。
现在我尝试使用以下方式运行我的项目:
ng serve --proxy-config proxy.conf.json
收到这条消息
Cannot find module '@angular/compiler-cli/ngcc' Error: Cannot find
module '@angular/compiler-cli/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"
}
}
最佳答案
在您的 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
再次安装模块。
关于angular - 升级 Angular 和项目后找不到编译器 ngcc 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56419456/
当我尝试使用 ivy 编译时出现此错误: ERROR in The ngcc compiler has changed since the last ngcc build. Please comple
运行命令 npm run ngcc抛出错误 'ngcc' is not recognized as an internal or external command .package.json {
我有一个旧的 Angular 应用程序,我已经从 Angular 9 升级到了 Angular 11。(从 Angular 2 开始,这些年来它有许多稳定的升级) 我的问题是,ngcc没有运行 ng
在将依赖项升级到 Angular 9(并执行必要的代码更改)后构建应用程序会引发错误: Compiling @angular/animations : es2015 as esm2015 Compil
我正在尝试构建和服务我的项目。它工作正常,我从 git 更新它,然后突然当我提供它时,有一个错误说“另一个进程,ID 为 29800,目前正在运行 ngcc。” 我重试了“npm i”,也重新启动了
有了 Angular 9 和它的新编译引擎 IVY,我的 CI 构建时间大大增加了。这当然是因为ngcc在许多模块上运行。 例如 Compiling @angular/core : es2015 as
在上次更新后的 Visual Studio Code 编辑器中,我在状态栏中看到以下文本: Angular: Running ngcc for project d:/..../tsconfig.spe
如果以下问题对您来说很幼稚,请原谅: 我经历了由 angular 9 开发的多个项目,其中大多数在 package.json 中有以下行作为 posinstall 脚本。"postinstall":
我刚刚将 Angular cli 和我的一个项目从 7.0.7 升级到 7.1.0。 我关注了this post和 @Francesco Borzi's回答。 现在我尝试使用以下方式运行我的项目: n
从一天到另一天,我在 Visual Studio Code 中的项目开始显示这两个错误: enter image description here 事实上,几乎所有来自 Angular Materia
关闭。这个问题需要debugging details .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 去年关闭。 Improve this question
我有一个需要通过 npm 分发的库。 Angular 10 的建议似乎仍然是应该在禁用 IVY 的情况下编译此类库,但 Angular CLI 将确保该库仍与启用了 IVY 的应用程序兼容。 使用我的
运行后ng serve我在终端窗口中有一个异常: 编译 @angular/core : 模块为 esm5 Error: Error on worker #1: TypeError: Cannot re
我已经向 npm 发布了一个 Angular 10 库,它在启用了 Ivy 的本地 Angular 10 项目中运行良好,但是如果我尝试在 StackBlitz 上使用它,我必须禁用 Ivy。 htt
我们目前正在尝试使用 Ivy 在 Angular 9 上构建我们的下一个库。我们有两个项目:一个对应于我们的组件库,第二个对应于一个“演示”,用于记录/测试它们。 Demo 通过 node_modul
我根据此配置使用 Angular 为 11 的 PrimeNG 11: "dependencies": { "@angular/animations": "^11.2.2", "@angular/
当我执行 ng serve 时出现以下错误: ERROR in node_modules/@angular/forms/forms.d.ts:1616:22 - 错误 NG6002:出现在 AppMo
我正在尝试将最新的 Angular Material 与 Angular 9 一起使用,但我遇到了以下问题 这是我的 app.modul.ts import { NgModule } from '@a
我已从 Angular 8 升级到 9,并按照所有步骤启用了 Ivy here .当我跑 npm install我的一些包抛出错误: Tried to overwrite .__ivy_ngcc_ba
我试图编译我的项目,但出现错误: Error: Error on worker #3: Error: No typings declaration can be found for the refer
我是一名优秀的程序员,十分优秀!