Skip to content

Commit bbc2878

Browse files
authored
Permit any version of @types/node (#134)
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.
1 parent 3437afc commit bbc2878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.1.3",
44
"description": "A string replace plugin for gulp",
55
"dependencies": {
6-
"@types/node": "^14.14.41",
6+
"@types/node": "*",
77
"@types/vinyl": "^2.0.4",
88
"istextorbinary": "^3.0.0",
99
"replacestream": "^4.0.3",

0 commit comments

Comments
 (0)