Skip to content

Commit

Permalink
feat: add support for Angular 19 (#2835)
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez authored Nov 21, 2024
1 parent a44e675 commit 4a73245
Show file tree
Hide file tree
Showing 106 changed files with 22,681 additions and 2,601 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion e2e/full-ivy-lib/node_modules/full-ivy/fesm2015/full-ivy.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion e2e/full-ivy-lib/node_modules/full-ivy/fesm2020/full-ivy.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ describe('demo (with TestBed):', () => {
});

it("injected provider should not be same as component's provider", () => {
@Component({ template: '<my-service-comp></my-service-comp>' })
@Component({ standalone: false, template: '<my-service-comp></my-service-comp>' })
class TestComponent {}

const fixture = TestBed.configureTestingModule({
Expand Down
26 changes: 13 additions & 13 deletions examples/example-app-monorepo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.12",
"@angular/common": "^18.2.12",
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/forms": "^18.2.12",
"@angular/platform-browser": "^18.2.12",
"@angular/platform-browser-dynamic": "^18.2.12",
"@angular/router": "^18.2.12",
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"angular-in-memory-web-api": "^0.19.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.12",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.12",
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"jest": "^29.7.0",
"jest-preset-angular": "^14.3.2",
"ng-packagr": "^18.2.1",
"typescript": "~5.5.4"
"ng-packagr": "^19.0.0",
"typescript": "~5.6.2"
}
}
Loading

0 comments on commit 4a73245

Please sign in to comment.