Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(benchmark): force latest restify version (#1810)
`*` will match any stable release, which means if there's already a
restify version installed in the benchmarks directory, npm won't try to
update it. `latest` only matches the latest version, which means npm
will always update to the latest stable version (unless it's already
installed). This behavior can be checked with https://semver.npmjs.com/.
  • Loading branch information
mmarchini authored and Peter Marton committed Dec 10, 2019
1 parent 8eee722 commit b8ec60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/package.json
Expand Up @@ -9,7 +9,7 @@
"node": ">=0.10"
},
"dependencies": {
"restify": "*"
"restify": "latest"
},
"devDependencies": {},
"license": "MIT",
Expand Down

0 comments on commit b8ec60e

Please sign in to comment.