Skip to content

Commit

Permalink
fix: lower engines (#1006)
Browse files Browse the repository at this point in the history
Vercel uses aws lambda versions in it's build process. Currently the latest v14 version used by aws is v14.19.0. By raising to `>=14.19.1` you prevent vercel builds from succeeding (until that cap is bumped). 

See here for aws lambda version: https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platform-history-nodejs.html
  • Loading branch information
zephraph committed Mar 23, 2022
1 parent 10e072b commit 68ed206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vitest/package.json
Expand Up @@ -132,6 +132,6 @@
"ws": "^8.5.0"
},
"engines": {
"node": ">=v14.19.1"
"node": ">=v14.19.0"
}
}

0 comments on commit 68ed206

Please sign in to comment.