From e1bac5bbb36f391b89445ba61abe561c75746f30 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 3 Nov 2021 18:48:10 -0400 Subject: [PATCH] fix(@angular-devkit/build-angular): update Angular peer dependencies to v13.1 prerelease This change allows framework v13.1 prelease versions to be used with the Angular CLI 13.1 preleases without peer dependency warnings. --- .../angular_devkit/build_angular/package.json | 8 ++++---- packages/ngtools/webpack/package.json | 2 +- .../e2e/assets/webpack/test-app/package.json | 16 ++++++++-------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json index ebc4c99c7cfb..32ce901b03eb 100644 --- a/packages/angular_devkit/build_angular/package.json +++ b/packages/angular_devkit/build_angular/package.json @@ -75,11 +75,11 @@ "esbuild": "0.13.12" }, "peerDependencies": { - "@angular/compiler-cli": "^13.0.0 || ^13.0.0-next", - "@angular/localize": "^13.0.0 || ^13.0.0-next", - "@angular/service-worker": "^13.0.0 || ^13.0.0-next", + "@angular/compiler-cli": "^13.0.0 || ^13.1.0-next", + "@angular/localize": "^13.0.0 || ^13.1.0-next", + "@angular/service-worker": "^13.0.0 || ^13.1.0-next", "karma": "^6.3.0", - "ng-packagr": "^13.0.0 || ^13.0.0-next", + "ng-packagr": "^13.0.0 || ^13.1.0-next", "protractor": "^7.0.0", "tailwindcss": "^2.0.0", "typescript": "~4.4.3" diff --git a/packages/ngtools/webpack/package.json b/packages/ngtools/webpack/package.json index 9a6ab45d5fcf..bd89aea2027e 100644 --- a/packages/ngtools/webpack/package.json +++ b/packages/ngtools/webpack/package.json @@ -22,7 +22,7 @@ "homepage": "https://github.com/angular/angular-cli/tree/master/packages/@ngtools/webpack", "dependencies": {}, "peerDependencies": { - "@angular/compiler-cli": "^13.0.0 || ^13.0.0-next", + "@angular/compiler-cli": "^13.0.0 || ^13.1.0-next", "typescript": "~4.4.3", "webpack": "^5.30.0" }, diff --git a/tests/legacy-cli/e2e/assets/webpack/test-app/package.json b/tests/legacy-cli/e2e/assets/webpack/test-app/package.json index c84084e4ddbc..7e3955edd876 100644 --- a/tests/legacy-cli/e2e/assets/webpack/test-app/package.json +++ b/tests/legacy-cli/e2e/assets/webpack/test-app/package.json @@ -2,14 +2,14 @@ "name": "test", "license": "MIT", "dependencies": { - "@angular/common": "^13.0.0-next", - "@angular/compiler": "^13.0.0-next", - "@angular/compiler-cli": "^13.0.0-next", - "@angular/core": "^13.0.0-next", - "@angular/platform-browser": "^13.0.0-next", - "@angular/platform-browser-dynamic": "^13.0.0-next", - "@angular/platform-server": "^13.0.0-next", - "@angular/router": "^13.0.0-next", + "@angular/common": "^13.1.0-next", + "@angular/compiler": "^13.1.0-next", + "@angular/compiler-cli": "^13.1.0-next", + "@angular/core": "^13.1.0-next", + "@angular/platform-browser": "^13.1.0-next", + "@angular/platform-browser-dynamic": "^13.1.0-next", + "@angular/platform-server": "^13.1.0-next", + "@angular/router": "^13.1.0-next", "@ngtools/webpack": "0.0.0", "core-js": "^3.10.0", "rxjs": "^6.6.7",