Skip to content

Commit b8ec60e

Browse files
mmarchiniPeter Marton
authored andcommitted
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/.
1 parent 8eee722 commit b8ec60e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"node": ">=0.10"
1010
},
1111
"dependencies": {
12-
"restify": "*"
12+
"restify": "latest"
1313
},
1414
"devDependencies": {},
1515
"license": "MIT",

0 commit comments

Comments
 (0)