Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
fix: correct engines range to include node v10 (#451)
Browse files Browse the repository at this point in the history
`">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 <bencoe@google.com>
  • Loading branch information
tomasz-sodzawiczny and bcoe committed Jun 18, 2020
1 parent e817d0d commit c8a2b29
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 @@ -5,7 +5,7 @@
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">10"
"node": ">=10"
},
"repository": "googleapis/nodejs-compute",
"main": "./src/index.js",
Expand Down

0 comments on commit c8a2b29

Please sign in to comment.