Skip to content

Commit

Permalink
Dependencies: Use ~ instead of ^.
Browse files Browse the repository at this point in the history
Fixes: #654

I think one improvement to the situation is to switch to ~ instead of
^. This is slightly more conservative, and would have prevented the
breakage described in the above issue. We use ~ already for ESLint
since minor versions are more likely to introduce incompatibilities
than patch versions.
  • Loading branch information
feross committed Oct 10, 2016
1 parent 92743f4 commit 99a1d90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -15,10 +15,10 @@
"eslint": "~3.6.0",
"eslint-config-standard": "6.2.0",
"eslint-config-standard-jsx": "3.2.0",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^6.0.0",
"eslint-plugin-standard": "^2.0.0",
"standard-engine": "^5.0.0"
"eslint-plugin-promise": "~2.0.0",
"eslint-plugin-react": "~6.4.1",
"eslint-plugin-standard": "~2.0.1",
"standard-engine": "~5.1.0"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
Expand Down

0 comments on commit 99a1d90

Please sign in to comment.