-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Precompile using babel before publishing #1
Conversation
Ugh, I guess |
Looks like the build is failing because of the code climate token.
|
Weird. (Mostly because master didn't fail.) Let me add that to Travis. |
OK, this is really weird. I set |
Hmm, is it private? I don't think private env vars are available to pull requests. |
Do you mind allowing me access to that branch via that nifty new checkbox? I will try to mess with it when I get home. |
Yup, should be enabled, feel free to push at will. |
eslint only supports node 4+ so linting won't be possible on CIs using node 0.10 and 0.12 |
This pull requests publishes a babel-ified version of
index.js
so this module can be used in old node versions that don't support ES6 stuff.Also adds a dependency on
es6-promise
that will be a fallback whenglobal.Promise
is missing.Refs electron/get#30