Skip to content

Commit 86ccab1

Browse files
tomasz-sodzawicznyBenjamin E. Coe
andauthored
fix: correct engines range to include node v10 (#451)
`">10"` range does not include the v10 version, it forces v11 and up. Switching to `">=10"` to include v10 (still LTS), which I believe was the original intent (changelog: "require node 10 in engines field") Co-authored-by: Benjamin E. Coe <[email protected]>
1 parent 6c6a804 commit 86ccab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/google-cloud-compute/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "Apache-2.0",
66
"author": "Google Inc.",
77
"engines": {
8-
"node": ">10"
8+
"node": ">=10"
99
},
1010
"repository": "googleapis/nodejs-compute",
1111
"main": "./src/index.js",

0 commit comments

Comments
 (0)