-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP - Babel 6 #221
WIP - Babel 6 #221
Conversation
576d3d0
to
854ea6b
Compare
Relevant: babel/babel#3094 |
Is this still blocking? Would you mind updating the link? I have no idea what issue on the new issue tracker it is. |
Ugh, why did they do that! I looked and can't find the original issue in the new tracker. I will look into this later today. |
They were fed up with GitHub being non-responsive on improving the issue system and they needed something more powerful. If it helps, the issue title were: |
It's the same issue number. https://phabricator.babeljs.io/T2954 which was closed as a duplicate of https://phabricator.babeljs.io/T6644 |
Thanks @thejameskyle |
854ea6b
to
e533ca3
Compare
e533ca3
to
297c62e
Compare
Looks like there is a pending PR to fix our blocking issue. |
@@ -13,7 +12,7 @@ var testPath = process.argv[2]; | |||
var babel; | |||
|
|||
try { | |||
var localBabel = resolveFrom('.', 'babel-core') || resolveFrom('.', 'babel'); | |||
var localBabel = resolveFrom('.', 'babel-core'); | |||
babel = require(localBabel); | |||
} catch (err) { | |||
babel = require('babel-core'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should drop using the the user's local Babel version. Instead we should just document that to use npm@3 or npm deduplicate
. The user can then just enforce any Babel 6 version and we will use the same since our dependency is loose.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree.
Another take on fixing the issue => babel/babel#3142 |
I believe this is also blocking => babel/babel#3139 |
No, shouldn't be.
|
Yeah, I think that's the one that will land |
Oh ok, that's great. So as soon as the Babel issue is fixed we can upgrade then. |
Closing in favor of #333 There is only one concern mentioned here that still applies, and I have transferred that to the new PR. |
See #212 for an earlier PR.
Blocking issue is:
babel/babel#2954
I have to rely on
babel-polyfill
to get tests to pass until that is taken care of.