-
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
resolving to a different Babel version #129
Comments
Do you have a local Babel install? If so, what version? // @twada |
@TrySound Not a very useful title. Please try harder the next time ;) |
@sindresorhus I just don't know what is the problem :)) "devDependencies": {
"ava": "^0.3.0"
}, and global the same |
I have the exact same error on Linux, so apparently it does not have anything to do with Windows. {
"ava": "^0.3.0",
"babel": "^5.8.23",
"babel-runtime": "^5.8.25"
} My {
"stage": 1,
"optional": ["es7.classProperties", "es7.comprehensions"]
} |
@sindresorhus I use npm3. Maybe babel5 doesn't work on it? |
@TrySound Well, I thought that was the cause, so I switched to node 0.12 and npm 2, but the issue is still present. So it is not that either. |
This might be because plugins: [
createEspowerPlugin(require('babel-core'), {
patterns: require('./enhance-assert').PATTERNS
})
]
}; This should be a mistake. I'll create a PR if I can reproduce it. |
Reproduced in npm 2.14.2. package.json "devDependencies": {
"ava": "^0.3.0",
"babel": "5.8.21",
"babel-core": "5.8.21"
} test.js import test from 'ava';
test((t) => {
t.pass();
t.end();
});
|
@sindresorhus I'm so sorry that I've missed your ping. @uiureo
Thanks a lot! |
@uiureo Seems like it works. Great! @sindresorhus Need to make hot patch. When you can release? |
Okay. Thanks. |
@sindresorhus Thanks |
The text was updated successfully, but these errors were encountered: