Skip to content

Commit c1d2310

Browse files
build: bump angular 19
1 parent 326e9d8 commit c1d2310

20 files changed

+28
-48
lines changed

templates/angular-example/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@
1414
},
1515
"private": true,
1616
"dependencies": {
17-
"@angular/animations": "^18.2.2",
18-
"@angular/common": "^18.2.2",
19-
"@angular/compiler": "^18.2.2",
20-
"@angular/core": "^18.2.2",
21-
"@angular/forms": "^18.2.2",
22-
"@angular/platform-browser": "^18.2.2",
23-
"@angular/platform-browser-dynamic": "^18.2.2",
24-
"@angular/router": "^18.2.2",
17+
"@angular/animations": "^19.0.3",
18+
"@angular/common": "^19.0.3",
19+
"@angular/compiler": "^19.0.3",
20+
"@angular/core": "^19.0.3",
21+
"@angular/forms": "^19.0.3",
22+
"@angular/platform-browser": "^19.0.3",
23+
"@angular/platform-browser-dynamic": "^19.0.3",
24+
"@angular/router": "^19.0.3",
2525
"@junobuild/core": "^0.0.63",
2626
"nanoid": "^5.0.7",
2727
"rxjs": "~7.8.1",
2828
"tslib": "^2.7.0",
29-
"zone.js": "^0.14.10"
29+
"zone.js": "^0.15.0"
3030
},
3131
"devDependencies": {
32-
"@angular-devkit/build-angular": "^18.2.2",
33-
"@angular/cli": "^18.2.2",
34-
"@angular/compiler-cli": "^18.2.2",
32+
"@angular-devkit/build-angular": "^19.0.4",
33+
"@angular/cli": "^19.0.4",
34+
"@angular/compiler-cli": "^19.0.3",
3535
"@types/jasmine": "~5.1.4",
3636
"autoprefixer": "^10.4.20",
3737
"jasmine-core": "~5.2.0",
@@ -43,6 +43,6 @@
4343
"postcss": "^8.4.41",
4444
"prettier": "^3.3.3",
4545
"tailwindcss": "^3.4.10",
46-
"typescript": "~5.4.2"
46+
"typescript": "~5.6.3"
4747
}
4848
}

templates/angular-example/src/app/app.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import {Component} from '@angular/core';
2-
import {RouterOutlet} from '@angular/router';
32
import {initSatellite} from '@junobuild/core';
43
import {environment} from '../environments/environment';
54
import {HomeComponent} from './components/home/home.component';
65

76
@Component({
87
selector: 'app-root',
9-
standalone: true,
10-
imports: [RouterOutlet, HomeComponent],
8+
imports: [HomeComponent],
119
templateUrl: './app.component.html'
1210
})
1311
export class AppComponent {

templates/angular-example/src/app/components/auth/auth.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {LogoutComponent} from '../logout/logout.component';
66

77
@Component({
88
selector: 'app-auth',
9-
standalone: true,
109
imports: [LoginComponent, LogoutComponent, NgIf],
1110
templateUrl: './auth.component.html'
1211
})

templates/angular-example/src/app/components/backdrop/backdrop.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {Component, Input} from '@angular/core';
33

44
@Component({
55
selector: 'app-backdrop',
6-
standalone: true,
76
imports: [NgIf, NgClass],
87
templateUrl: './backdrop.component.html'
98
})

templates/angular-example/src/app/components/background/background.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {Component} from '@angular/core';
22

33
@Component({
44
selector: 'app-background',
5-
standalone: true,
65
imports: [],
76
templateUrl: './background.component.html'
87
})

templates/angular-example/src/app/components/button/button.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {Component, Input} from '@angular/core';
33

44
@Component({
55
selector: 'app-button',
6-
standalone: true,
76
imports: [NgClass],
87
templateUrl: './button.component.html'
98
})

templates/angular-example/src/app/components/delete/delete.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {BackdropComponent} from '../backdrop/backdrop.component';
77

88
@Component({
99
selector: 'app-delete',
10-
standalone: true,
1110
imports: [BackdropComponent, NgIf],
1211
templateUrl: './delete.component.html'
1312
})

templates/angular-example/src/app/components/footer/footer.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {Component} from '@angular/core';
22

33
@Component({
44
selector: 'app-footer',
5-
standalone: true,
65
imports: [],
76
templateUrl: './footer.component.html'
87
})

templates/angular-example/src/app/components/home/home.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {TableComponent} from '../table/table.component';
77

88
@Component({
99
selector: 'app-home',
10-
standalone: true,
1110
imports: [FooterComponent, BackgroundComponent, TableComponent, AuthComponent, ModalComponent],
1211
templateUrl: './home.component.html'
1312
})

templates/angular-example/src/app/components/login/login.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {ButtonComponent} from '../button/button.component';
44

55
@Component({
66
selector: 'app-login',
7-
standalone: true,
87
imports: [ButtonComponent],
98
templateUrl: './login.component.html'
109
})

templates/angular-example/src/app/components/logout/logout.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {signOut} from '@junobuild/core';
33

44
@Component({
55
selector: 'app-logout',
6-
standalone: true,
76
imports: [],
87
templateUrl: './logout.component.html'
98
})

templates/angular-example/src/app/components/modal/modal.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {ButtonComponent} from '../button/button.component';
1010

1111
@Component({
1212
selector: 'app-modal',
13-
standalone: true,
1413
imports: [NgIf, BackdropComponent, ReactiveFormsModule, ButtonComponent],
1514
templateUrl: './modal.component.html'
1615
})

templates/angular-example/src/app/components/table/table.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {DeleteComponent} from '../delete/delete.component';
77

88
@Component({
99
selector: 'app-table',
10-
standalone: true,
1110
imports: [NgForOf, NgIf, DeleteComponent],
1211
templateUrl: './table.component.html'
1312
})

templates/angular-starter/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@
1414
},
1515
"private": true,
1616
"dependencies": {
17-
"@angular/animations": "^18.2.2",
18-
"@angular/common": "^18.2.2",
19-
"@angular/compiler": "^18.2.2",
20-
"@angular/core": "^18.2.2",
21-
"@angular/forms": "^18.2.2",
22-
"@angular/platform-browser": "^18.2.2",
23-
"@angular/platform-browser-dynamic": "^18.2.2",
24-
"@angular/router": "^18.2.2",
17+
"@angular/animations": "^19.0.3",
18+
"@angular/common": "^19.0.3",
19+
"@angular/compiler": "^19.0.3",
20+
"@angular/core": "^19.0.3",
21+
"@angular/forms": "^19.0.3",
22+
"@angular/platform-browser": "^19.0.3",
23+
"@angular/platform-browser-dynamic": "^19.0.3",
24+
"@angular/router": "^19.0.3",
2525
"@junobuild/core": "^0.0.63",
2626
"rxjs": "~7.8.1",
2727
"tslib": "^2.7.0",
28-
"zone.js": "^0.14.10"
28+
"zone.js": "^0.15.0"
2929
},
3030
"devDependencies": {
31-
"@angular-devkit/build-angular": "^18.2.2",
32-
"@angular/cli": "^18.2.2",
33-
"@angular/compiler-cli": "^18.2.2",
31+
"@angular-devkit/build-angular": "^19.0.4",
32+
"@angular/cli": "^19.0.4",
33+
"@angular/compiler-cli": "^19.0.3",
3434
"@types/jasmine": "~5.1.4",
3535
"autoprefixer": "^10.4.20",
3636
"jasmine-core": "~5.2.0",
@@ -42,6 +42,6 @@
4242
"postcss": "^8.4.41",
4343
"prettier": "^3.3.3",
4444
"tailwindcss": "^3.4.10",
45-
"typescript": "~5.4.2"
45+
"typescript": "~5.6.3"
4646
}
4747
}

templates/angular-starter/src/app/app.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import {Component} from '@angular/core';
2-
import {RouterOutlet} from '@angular/router';
32
import {initSatellite} from '@junobuild/core';
43
import {environment} from '../environments/environment';
54
import {HomeComponent} from './components/home/home.component';
65

76
@Component({
87
selector: 'app-root',
9-
standalone: true,
10-
imports: [RouterOutlet, HomeComponent],
8+
imports: [HomeComponent],
119
templateUrl: './app.component.html'
1210
})
1311
export class AppComponent {

templates/angular-starter/src/app/components/article/article.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {Component, Input} from '@angular/core';
22

33
@Component({
44
selector: 'app-article',
5-
standalone: true,
65
imports: [],
76
templateUrl: './article.component.html'
87
})

templates/angular-starter/src/app/components/background/background.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {Component} from '@angular/core';
22

33
@Component({
44
selector: 'app-background',
5-
standalone: true,
65
imports: [],
76
templateUrl: './background.component.html'
87
})

templates/angular-starter/src/app/components/footer/footer.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {Component} from '@angular/core';
22

33
@Component({
44
selector: 'app-footer',
5-
standalone: true,
65
imports: [],
76
templateUrl: './footer.component.html'
87
})

templates/angular-starter/src/app/components/hero/hero.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {Component, Input} from '@angular/core';
22

33
@Component({
44
selector: 'app-hero',
5-
standalone: true,
65
imports: [],
76
templateUrl: './hero.component.html'
87
})

templates/angular-starter/src/app/components/home/home.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {HeroComponent} from '../hero/hero.component';
66

77
@Component({
88
selector: 'app-home',
9-
standalone: true,
109
imports: [HeroComponent, ArticleComponent, FooterComponent, BackgroundComponent],
1110
templateUrl: './home.component.html'
1211
})

0 commit comments

Comments
 (0)