Skip to content

Commit 73c1627

Browse files
committed
chore: version 21.0.0-next.5
1 parent 5b67797 commit 73c1627

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

ponyracer/angular.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"version": 1,
4+
"cli": {
5+
"packageManager": "npm"
6+
},
47
"newProjectRoot": "projects",
58
"projects": {
69
"ponyracer": {
@@ -14,9 +17,6 @@
1417
"builder": "@angular/build:application",
1518
"options": {
1619
"browser": "src/main.ts",
17-
"polyfills": [
18-
"zone.js"
19-
],
2020
"tsConfig": "tsconfig.app.json",
2121
"assets": [
2222
{
@@ -75,10 +75,6 @@
7575
"test": {
7676
"builder": "@angular/build:karma",
7777
"options": {
78-
"polyfills": [
79-
"zone.js",
80-
"zone.js/testing"
81-
],
8278
"tsConfig": "tsconfig.spec.json",
8379
"assets": [
8480
{

ponyracer/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
]
2323
},
2424
"private": true,
25+
"packageManager": "npm@10.9.3",
2526
"dependencies": {
2627
"@angular/common": "^21.0.0-next.0",
2728
"@angular/compiler": "^21.0.0-next.0",
@@ -30,15 +31,14 @@
3031
"@angular/platform-browser": "^21.0.0-next.0",
3132
"@angular/platform-server": "^21.0.0-next.0",
3233
"@angular/router": "^21.0.0-next.0",
33-
"@angular/ssr": "^21.0.0-next.4",
34+
"@angular/ssr": "^21.0.0-next.5",
3435
"express": "^5.1.0",
3536
"rxjs": "~7.8.0",
36-
"tslib": "^2.3.0",
37-
"zone.js": "~0.15.0"
37+
"tslib": "^2.3.0"
3838
},
3939
"devDependencies": {
40-
"@angular/build": "^21.0.0-next.4",
41-
"@angular/cli": "^21.0.0-next.4",
40+
"@angular/build": "^21.0.0-next.5",
41+
"@angular/cli": "^21.0.0-next.5",
4242
"@angular/compiler-cli": "^21.0.0-next.0",
4343
"@types/express": "^5.0.1",
4444
"@types/jasmine": "~5.1.0",

ponyracer/src/app/app.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection } from '@angular/core';
1+
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
22
import { provideRouter } from '@angular/router';
33

44
import { routes } from './app.routes';
@@ -7,7 +7,6 @@ import { provideClientHydration, withEventReplay } from '@angular/platform-brows
77
export const appConfig: ApplicationConfig = {
88
providers: [
99
provideBrowserGlobalErrorListeners(),
10-
provideZoneChangeDetection({ eventCoalescing: true }),
1110
provideRouter(routes), provideClientHydration(withEventReplay())
1211
]
1312
};

0 commit comments

Comments
 (0)