我正在尝试将项目从角度5更新为角度7。 为此,首先更新@ angular / cli gloabaly和本地 然后我在本地安装了@ angular / cli,然后更新了ng模块和其他相关命令。
现在,我检查ng --version,它显示的是我的角度7,但我的项目未运行,并且始终抛出以下错误:
Below is my script in package.json file:
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --port=9000 --
content-base wwwroot/",
"build": "cross-env NODE_ENV=development webpack --progress",
"prod": "cross-env NODE_ENV=production webpack --progress"
}
答案 0 :(得分:1)
更新角度最新版本7的步骤:
1)您需要更新角度cli。
npm uninstall -g angular-cli
npm cache clean or npm cache verify
npm install -g @angular/cli@latest
(c.f laravel 5.7)
2)您需要根据角度更新指南的建议升级项目版本。 Angular更新指南网站链接https://cli.angular.io/
3)在此网站上,选择您的旧版本和所需的最新版本,然后单击“显示如何更新”
4)单击此按钮后,网站提供了许多步骤。您需要按照此步骤升级Angular版本