Skip to content

Commit

Permalink
fix: Correct Node.js version requirement for the Nextclade CLI
Browse files Browse the repository at this point in the history
The README documents >=12, and indeed on Node.js 10 the Nextclade CLI
doesn't work because worker_threads is not available.
  • Loading branch information
tsibley committed Feb 25, 2021
1 parent 330c5eb commit 24c7b76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Expand Up @@ -27,7 +27,7 @@
"dist/*.js.map"
],
"engines": {
"node": ">=10"
"node": ">=12"
},
"main": "dist/nextclade.js",
"license": "MIT",
Expand Down

0 comments on commit 24c7b76

Please sign in to comment.