Skip to content

Commit

Permalink
Merge pull request #119 from martinboue/fix/angular-19-support
Browse files Browse the repository at this point in the history
Support for angular v19 #118
  • Loading branch information
daniel-sc authored Nov 21, 2024
2 parents acd3100 + a2a1ffe commit c951b3a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:
- {angular: {version: 17.0.0, devkit-version: 0.1700.0}, node: {version: 20.x, types-version: 20.17.6}}
- {angular: {version: 18.0.0, devkit-version: 0.1800.0}, node: {version: 18.x, types-version: 18.15.3}}
- {angular: {version: 18.0.0, devkit-version: 0.1800.0}, node: {version: 20.x, types-version: 20.17.6}}
- {angular: {version: 18.0.0, devkit-version: 0.1800.0}, node: {version: 22.x, types-version: 20.9.1}}
- {angular: {version: 18.0.0, devkit-version: 0.1800.0}, node: {version: 22.x, types-version: 22.9.1}}
- {angular: {version: 19.0.0, devkit-version: 0.1900.0}, node: {version: 18.x, types-version: 18.15.3}}
- {angular: {version: 19.0.0, devkit-version: 0.1900.0}, node: {version: 20.x, types-version: 20.17.6}}
- {angular: {version: 19.0.0, devkit-version: 0.1900.0}, node: {version: 22.x, types-version: 22.9.1}}

steps:
- uses: actions/checkout@v2
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
},
"homepage": "https://github.com/daniel-sc/ng-extract-i18n-merge#readme",
"dependencies": {
"@angular-devkit/architect": "^0.1301.0 || ^0.1401.0 || ^0.1501.0 || ^0.1601.0 || ^0.1700.0 || ^0.1800.0",
"@angular-devkit/core": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"@angular-devkit/schematics": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"@schematics/angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"@angular-devkit/architect": "^0.1301.0 || ^0.1401.0 || ^0.1501.0 || ^0.1601.0 || ^0.1700.0 || ^0.1800.0 || ^0.1900.0",
"@angular-devkit/core": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular-devkit/schematics": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"@schematics/angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"xmldoc": "^1.1.3"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
"@angular-devkit/build-angular": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.8 || ^29.0.0",
Expand Down

0 comments on commit c951b3a

Please sign in to comment.