Skip to content

Commit

Permalink
Permit any version of @types/node (#134)
Browse files Browse the repository at this point in the history
Projects that use gulp-replace cannot currenlty be built with
TypeScript 4.9 because gulp-replace depends on an old major
version of @types/node.

A quick survey of a few of my other dependencies that require
@types/node shows that most of them accept any version (`"*"`).

This seems like the best solution for gulp-replace too.

See microsoft/TypeScript#51567.
  • Loading branch information
lpsinger authored Dec 17, 2022
1 parent 3437afc commit bbc2878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.1.3",
"description": "A string replace plugin for gulp",
"dependencies": {
"@types/node": "^14.14.41",
"@types/node": "*",
"@types/vinyl": "^2.0.4",
"istextorbinary": "^3.0.0",
"replacestream": "^4.0.3",
Expand Down

0 comments on commit bbc2878

Please sign in to comment.