Skip to content

Commit

Permalink
refactor: drop support for Angular <17 (#2991)
Browse files Browse the repository at this point in the history
BREAKING CHANGE

The minimum support version is 17 following Angular support policy https://angular.dev/reference/releases#actively-supported-versions
  • Loading branch information
ahnpnl authored Feb 27, 2025
1 parent aeef774 commit 3a60492
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@
},
"dependencies": {
"bs-logger": "^0.2.6",
"esbuild-wasm": ">=0.15.13",
"esbuild-wasm": ">=0.20.1",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"pretty-format": "^29.7.0",
"ts-jest": "^29.0.0"
},
"optionalDependencies": {
"esbuild": ">=0.15.13"
"esbuild": ">=0.20.1"
},
"peerDependencies": {
"@angular/compiler-cli": ">=15.0.0 <20.0.0",
"@angular/core": ">=15.0.0 <20.0.0",
"@angular/platform-browser-dynamic": ">=15.0.0 <20.0.0",
"@angular/compiler-cli": ">=17.0.0 <20.0.0",
"@angular/core": ">=17.0.0 <20.0.0",
"@angular/platform-browser-dynamic": ">=17.0.0 <20.0.0",
"jest": "^29.0.0",
"jsdom": ">=20.0.0",
"typescript": ">=4.8"
Expand Down
14 changes: 7 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6402,7 +6402,7 @@ __metadata:
languageName: node
linkType: hard

"esbuild-wasm@npm:0.25.0, esbuild-wasm@npm:>=0.15.13":
"esbuild-wasm@npm:0.25.0, esbuild-wasm@npm:>=0.20.1":
version: 0.25.0
resolution: "esbuild-wasm@npm:0.25.0"
bin:
Expand All @@ -6411,7 +6411,7 @@ __metadata:
languageName: node
linkType: hard

"esbuild@npm:0.25.0, esbuild@npm:>=0.15.13":
"esbuild@npm:0.25.0, esbuild@npm:>=0.20.1":
version: 0.25.0
resolution: "esbuild@npm:0.25.0"
dependencies:
Expand Down Expand Up @@ -8838,8 +8838,8 @@ __metadata:
chalk: "npm:^4.1.2"
conventional-changelog-cli: "npm:^5.0.0"
cross-env: "npm:^7.0.3"
esbuild: "npm:>=0.15.13"
esbuild-wasm: "npm:>=0.15.13"
esbuild: "npm:>=0.20.1"
esbuild-wasm: "npm:>=0.20.1"
eslint: "npm:^8.57.1"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-import: "npm:^2.31.0"
Expand All @@ -8866,9 +8866,9 @@ __metadata:
typescript: "npm:~5.7.3"
zone.js: "npm:~0.15.0"
peerDependencies:
"@angular/compiler-cli": ">=15.0.0 <20.0.0"
"@angular/core": ">=15.0.0 <20.0.0"
"@angular/platform-browser-dynamic": ">=15.0.0 <20.0.0"
"@angular/compiler-cli": ">=17.0.0 <20.0.0"
"@angular/core": ">=17.0.0 <20.0.0"
"@angular/platform-browser-dynamic": ">=17.0.0 <20.0.0"
jest: ^29.0.0
jsdom: ">=20.0.0"
typescript: ">=4.8"
Expand Down

0 comments on commit 3a60492

Please sign in to comment.