Skip to content

Commit

Permalink
feat: add support for Angular 19
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Nov 19, 2024
1 parent 63b4128 commit 6bc9d23
Show file tree
Hide file tree
Showing 102 changed files with 24,040 additions and 2,607 deletions.
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-rc.3",
"@angular/common": "^19.0.0-rc.3",
"@angular/compiler": "^19.0.0-rc.3",
"@angular/core": "^19.0.0-rc.3",
"@angular/forms": "^19.0.0-rc.3",
"@angular/platform-browser": "^19.0.0-rc.3",
"@angular/platform-browser-dynamic": "^19.0.0-rc.3",
"@angular/router": "^19.0.0-rc.3",
"angular-in-memory-web-api": "^0.18.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-rc.3",
"@angular/cli": "^19.0.0-rc.3",
"@angular/compiler-cli": "^19.0.0-rc.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.3.1",
"ng-packagr": "^18.2.1",
"typescript": "~5.5.4"
"ng-packagr": "^19.0.0-rc.0",
"typescript": "~5.6.2"
}
}
Loading

0 comments on commit 6bc9d23

Please sign in to comment.