Skip to content

Commit 922e754

Browse files
committed
build: update to the latest version of Angular
We're a few `next` versions behind on Angular. These changes update us so we don't fall behind too much.
1 parent d679024 commit 922e754

File tree

3 files changed

+573
-332
lines changed

3 files changed

+573
-332
lines changed

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
},
5757
"version": "18.0.0-next.5",
5858
"dependencies": {
59-
"@angular/animations": "^18.0.0-next.1",
60-
"@angular/common": "^18.0.0-next.1",
61-
"@angular/compiler": "^18.0.0-next.1",
62-
"@angular/core": "^18.0.0-next.1",
63-
"@angular/forms": "^18.0.0-next.1",
64-
"@angular/platform-browser": "^18.0.0-next.1",
59+
"@angular/animations": "^18.0.0-next.5",
60+
"@angular/common": "^18.0.0-next.5",
61+
"@angular/compiler": "^18.0.0-next.5",
62+
"@angular/core": "^18.0.0-next.5",
63+
"@angular/forms": "^18.0.0-next.5",
64+
"@angular/platform-browser": "^18.0.0-next.5",
6565
"@types/google.maps": "^3.54.10",
6666
"@types/youtube": "^0.0.46",
6767
"rxjs": "^6.6.7",
@@ -70,18 +70,18 @@
7070
"zone.js": "~0.14.0"
7171
},
7272
"devDependencies": {
73-
"@angular-devkit/build-angular": "^18.0.0-next.0",
74-
"@angular-devkit/core": "^18.0.0-next.0",
75-
"@angular-devkit/schematics": "^18.0.0-next.0",
73+
"@angular-devkit/build-angular": "^18.0.0-next.3",
74+
"@angular-devkit/core": "^18.0.0-next.3",
75+
"@angular-devkit/schematics": "^18.0.0-next.3",
7676
"@angular/bazel": "https://github.com/angular/bazel-builds.git#bac9c1abe1e6ac1801fbbccb53353a1ed7126469",
7777
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#3eaeb80cce7c62c3c0c3e24733305b64de4f493b",
78-
"@angular/cli": "^18.0.0-next.0",
79-
"@angular/compiler-cli": "^18.0.0-next.1",
80-
"@angular/localize": "^18.0.0-next.1",
78+
"@angular/cli": "^18.0.0-next.3",
79+
"@angular/compiler-cli": "^18.0.0-next.5",
80+
"@angular/localize": "^18.0.0-next.5",
8181
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#36946be4df61f6549ae3829c026022e47674eae2",
82-
"@angular/platform-browser-dynamic": "^18.0.0-next.1",
83-
"@angular/platform-server": "^18.0.0-next.1",
84-
"@angular/router": "^18.0.0-next.1",
82+
"@angular/platform-browser-dynamic": "^18.0.0-next.5",
83+
"@angular/platform-server": "^18.0.0-next.5",
84+
"@angular/router": "^18.0.0-next.5",
8585
"@babel/core": "^7.16.12",
8686
"@babel/helper-explode-assignable-expression": "^7.18.6",
8787
"@babel/helper-string-parser": "^7.22.5",
@@ -149,7 +149,7 @@
149149
"@octokit/rest": "18.3.5",
150150
"@rollup/plugin-commonjs": "^21.0.0",
151151
"@rollup/plugin-node-resolve": "^13.1.3",
152-
"@schematics/angular": "^18.0.0-next.0",
152+
"@schematics/angular": "^18.0.0-next.3",
153153
"@types/babel__core": "^7.1.18",
154154
"@types/browser-sync": "^2.26.3",
155155
"@types/fs-extra": "^9.0.13",

src/dev-app/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {HttpClientModule} from '@angular/common/http';
1313
import {
1414
importProvidersFrom,
1515
provideZoneChangeDetection,
16-
ɵprovideZonelessChangeDetection,
16+
provideExperimentalZonelessChangeDetection,
1717
} from '@angular/core';
1818
import {bootstrapApplication} from '@angular/platform-browser';
1919
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
@@ -52,7 +52,7 @@ bootstrapApplication(DevApp, {
5252
{provide: MAT_RIPPLE_GLOBAL_OPTIONS, useExisting: DevAppRippleOptions},
5353
{provide: Directionality, useClass: DevAppDirectionality},
5454
cachedAppState.zoneless
55-
? ɵprovideZonelessChangeDetection()
55+
? provideExperimentalZonelessChangeDetection()
5656
: provideZoneChangeDetection({eventCoalescing: true}),
5757
],
5858
});

0 commit comments

Comments
 (0)