From b945bc3a9ed2f46278a3d72812f56bd37996ac35 Mon Sep 17 00:00:00 2001 From: Kara Erickson Date: Fri, 26 Apr 2019 11:01:37 -0700 Subject: [PATCH] test(ivy): pin deps on hello world size tests (#30152) We recently had an unexpected size regression in the hello world tests because the CLI devkit released an RC that regressed us and the dependencies were not pinned. This change ensures that we only update dependencies like devkit deliberately, so we do not have mysterious breakages caused by other packages. PR Close #30152 --- integration/_payload-limits.json | 4 ++-- integration/cli-hello-world-ivy-compat/package.json | 2 +- integration/cli-hello-world-ivy-minimal/package.json | 2 +- integration/cli-hello-world/package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/integration/_payload-limits.json b/integration/_payload-limits.json index 1fd3016633..65ba667766 100644 --- a/integration/_payload-limits.json +++ b/integration/_payload-limits.json @@ -3,7 +3,7 @@ "master": { "uncompressed": { "runtime": 1497, - "main": 167065, + "main": 164945, "polyfills": 43626 } } @@ -12,7 +12,7 @@ "master": { "uncompressed": { "runtime": 1440, - "main": 30932, + "main": 14487, "polyfills": 43567 } } diff --git a/integration/cli-hello-world-ivy-compat/package.json b/integration/cli-hello-world-ivy-compat/package.json index c4479cf108..0ff9a2e37d 100644 --- a/integration/cli-hello-world-ivy-compat/package.json +++ b/integration/cli-hello-world-ivy-compat/package.json @@ -28,7 +28,7 @@ "zone.js": "file:../../node_modules/zone.js" }, "devDependencies": { - "@angular-devkit/build-angular": "^0.800.0-beta.11", + "@angular-devkit/build-angular": "0.800.0-beta.15", "@angular/cli": "file:../../node_modules/@angular/cli", "@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli", "@angular/language-service": "file:../../dist/packages-dist/language-service", diff --git a/integration/cli-hello-world-ivy-minimal/package.json b/integration/cli-hello-world-ivy-minimal/package.json index 8346d4d8b8..f716eaa4a6 100644 --- a/integration/cli-hello-world-ivy-minimal/package.json +++ b/integration/cli-hello-world-ivy-minimal/package.json @@ -28,7 +28,7 @@ "zone.js": "file:../../node_modules/zone.js" }, "devDependencies": { - "@angular-devkit/build-angular": "^0.800.0-beta.11", + "@angular-devkit/build-angular": "0.800.0-beta.15", "@angular/cli": "file:../../node_modules/@angular/cli", "@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli", "@angular/language-service": "file:../../dist/packages-dist/language-service", diff --git a/integration/cli-hello-world/package.json b/integration/cli-hello-world/package.json index aa525e4b0d..a92a5c57d6 100644 --- a/integration/cli-hello-world/package.json +++ b/integration/cli-hello-world/package.json @@ -28,7 +28,7 @@ "zone.js": "file:../../node_modules/zone.js" }, "devDependencies": { - "@angular-devkit/build-angular": "^0.800.0-beta.11", + "@angular-devkit/build-angular": "0.800.0-beta.15", "@angular/cli": "file:../../node_modules/@angular/cli", "@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli", "@angular/language-service": "file:../../dist/packages-dist/language-service",