Skip to content

Commit

Permalink
fix(@schematics/angular): use @types/node v18
Browse files Browse the repository at this point in the history
Currently, running a schematics that adds `@types/node` to a project, like `ng add @angular/ssr`, will add the v16 types.
As nodejs v16 is now EOL, this PR updates the types to v18.
  • Loading branch information
cexbrayat authored and alan-agius4 committed Sep 29, 2023
1 parent 59a4b00 commit 0368b23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"typescript": "~5.2.2"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/node": "^18.18.0",
"@types/jasmine": "~4.3.0",
"jasmine": "^5.0.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"typescript": "~5.2.2"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/node": "^18.18.0",
"@types/jasmine": "~4.3.0",
"jasmine": "~5.1.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@types/express": "^4.17.17",
"@types/jasmine": "~4.3.0",
"@types/node": "^16.11.7",
"@types/node": "^18.18.0",
"express": "^4.18.2",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "~7.0.0",
Expand Down

0 comments on commit 0368b23

Please sign in to comment.