ng update @angular/cli
コマンドを使用して、angular-cliを更新しました。その後、次のエラートレースでCould not determine single project for 'server' target
としてエラーが発生しました。
Could not determine a single project for the 'serve' target.
Error: Could not determine a single project for the 'serve' target.
at ServeCommand.getProjectNamesByTarget (E:\Angular\Projects\projectName\node_modules\@angular\cli\models\architect-command.js:175:19)
at ServeCommand.<anonymous> (E:\Angular\Projects\projectName\node_modules\@angular\cli\models\architect-command.js:128:51)
at Generator.next (<anonymous>)
at E:\Angular\Projects\projectName\node_modules\@angular\cli\models\architect-command.js:7:71
at new Promise (<anonymous>)
at __awaiter (E:\Angular\Projects\projectName\node_modules\@angular\cli\models\architect-command.js:3:12)
at ServeCommand.runArchitectTarget (E:\Angular\Projects\projectName\node_modules\@angular\cli\models\architect-command.js:121:16)
at ServeCommand.<anonymous> (E:\Angular\Projects\projectName\node_modules\@angular\cli\commands\serve.js:34:25)
at Generator.next (<anonymous>)
at E:\Angular\Projects\projectName\node_modules\@angular\cli\commands\serve.js:7:71
この動作は非常に混乱しています。詳細については、package.json
もここに追加しています。
{
"name": "ProjectName",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular/cli": "~6.0.8",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"TypeScript": "~2.5.3",
"@angular-devkit/build-angular": "~0.6.8"
}
}
ここで、このエラーが発生する理由がわかりました。誰でもそれを解決するのを手伝ってくれますか?
更新プロセスの3つのステップすべてを実行しましたか?
更新は通常3つの手順に従って行われ、新しいng更新ツールを利用します。
1)@ angular/cliの更新:
npm install -g @angular/cli
npm install @angular/cli
ng update @angular/cli
2)Angularフレームワークパッケージを更新します。
ng update @angular/core
3)他の依存関係を更新する
詳細については、この投稿の下部をご覧ください。 https://blog.angular.io/version-6-of-angular-now-available-cc56b0efa7a4
手順のセットについては、このリンクも参照してください。 https://update.angular.io/
Angular 6には、ライブラリと呼ばれる機能が追加されています。私の普遍的なプロジェクトをangular 4から6にアップグレードしたところ、私の場合、問題は以下のスクリプトでした。
"build:client-and-server-bundles": "ng build --prod && ng run project-name:server:production",
次のように、プロジェクト名をスクリプトに修正して修正しました。
"build:client-and-server-bundles": "ng build my-main-project-name --prod && ng run my-main-project-name:server:production",
したがって、変更はビルドコマンドにあったため、ライブラリを使用して複数のプロジェクトを互いに干渉させずに使用できるため、ng build --prod
コマンドはng build --prod my-main-project-name
に変更されます。したがって、ビルドするプロジェクトを指定する必要があります。