Skip to content

Commit

Permalink
Update angular to v19.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tja4472 committed Jan 18, 2025
1 parent 18920e6 commit 2f0af32
Show file tree
Hide file tree
Showing 10 changed files with 2,462 additions and 2,420 deletions.
4,852 changes: 2,451 additions & 2,401 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.13",
"@angular/common": "18.2.13",
"@angular/compiler": "18.2.13",
"@angular/core": "18.2.13",
"@angular/forms": "18.2.13",
"@angular/platform-browser": "18.2.13",
"@angular/platform-browser-dynamic": "18.2.13",
"@angular/router": "18.2.13",
"@angular/animations": "19.1.1",
"@angular/common": "19.1.1",
"@angular/compiler": "19.1.1",
"@angular/core": "19.1.1",
"@angular/forms": "19.1.1",
"@angular/platform-browser": "19.1.1",
"@angular/platform-browser-dynamic": "19.1.1",
"@angular/router": "19.1.1",
"rxjs": "7.8.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.12",
"@angular-devkit/build-angular": "19.1.2",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "18.2.12",
"@angular/compiler-cli": "18.2.13",
"@angular/cli": "19.1.2",
"@angular/compiler-cli": "19.1.1",
"@testing-library/angular": "17.3.5",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
Expand Down
1 change: 0 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { EnvironmentService } from '@app/services/environment.service';

@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet],
template: `
<h1 data-cy="greeting">Welcome to {{ title }}!</h1>
Expand Down
1 change: 0 additions & 1 deletion src/app/features/examples/examples.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { StepperComponent } from './ui/stepper/stepper.component';

@Component({
selector: 'app-examples',
standalone: true,
imports: [FormsComponent, StepperComponent],
template: `
<p>examples works!</p>
Expand Down
1 change: 0 additions & 1 deletion src/app/features/examples/ui/forms/03-forms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ import {
}
</form>
`,
standalone: true,
imports: [ReactiveFormsModule],
})
export class FormsComponent {
Expand Down
1 change: 0 additions & 1 deletion src/app/features/feature-1/feature-1.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component } from '@angular/core';

@Component({
selector: 'app-feature-1',
standalone: true,
imports: [],
template: ` <p>feature-1 works!</p> `,
styles: ``,
Expand Down
1 change: 0 additions & 1 deletion src/app/features/feature-2/feature-2.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component } from '@angular/core';

@Component({
selector: 'app-feature-2',
standalone: true,
imports: [],
template: ` <p>feature-2 works!</p> `,
styles: ``,
Expand Down
1 change: 0 additions & 1 deletion src/app/features/home/forecast/forecast.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component } from '@angular/core';

@Component({
selector: 'app-home-forecast',
standalone: true,
imports: [],
template: ` <p>home-forecast works!</p> `,
styles: ``,
Expand Down
1 change: 0 additions & 1 deletion src/app/features/home/home-editor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component } from '@angular/core';

@Component({
selector: 'app-home-editor',
standalone: true,
imports: [],
template: ` <p>home-editor works!</p> `,
styles: ``,
Expand Down
1 change: 0 additions & 1 deletion src/app/features/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { InputOutputStepperComponent } from './input-output-stepper.component';

@Component({
selector: 'app-home',
standalone: true,
imports: [InputOutputStepperComponent],
template: `
<p>home works!</p>
Expand Down

0 comments on commit 2f0af32

Please sign in to comment.