Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
Lock down dependency versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
loganfsmyth committed Dec 1, 2017
1 parent a0fbd50 commit 0609da8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -12,10 +12,10 @@
"url": "https://github.com/babel/babel-eslint.git"
},
"dependencies": {
"@babel/code-frame": "^7.0.0-beta.31",
"@babel/traverse": "^7.0.0-beta.31",
"@babel/types": "^7.0.0-beta.31",
"babylon": "^7.0.0-beta.31"
"@babel/code-frame": "7.0.0-beta.31",
"@babel/traverse": "7.0.0-beta.31",
"@babel/types": "7.0.0-beta.31",
"babylon": "7.0.0-beta.31"
},
"scripts": {
"test": "npm run lint && npm run test-only",
Expand Down

2 comments on commit 0609da8

@jaydenseric
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why? This seems to go against the spirit of 295091d.

@loganfsmyth
Copy link
Member Author

@loganfsmyth loganfsmyth commented on 0609da8 Dec 4, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jaydenseric Since it is a beta, there's no guarantee that there won't be breaking changes between versions, so relying on ^ is a bad idea. This was rolled back because we made just such a breaking change.

Please sign in to comment.