-
Notifications
You must be signed in to change notification settings - Fork 74
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
only one instance of babel-polyfill is allowed #3
Comments
Dang, I didn't know that. We should probably conditionally include it for what we need in this case something like: if(typeof Object.assign !== 'function') {
require('babel-polyfill');
} |
According to the comments, babel sets if (!global._babelPolyfill) {
require('babel-polyfill')
} |
Oh sweet. I should update it for the other adapters, too, later. If you have time would you mind submitting that change as pull request? |
Btw what is the status of feathers-waterline? :) |
Thanks for the PR. It's released in v0.2.1. @ekryski started working on feathers-waterline maybe he can give a better status update than me. |
Ah 💩. I didn't know that either. I guess there are a couple places we probably need to change that. @jgillich hoping to have waterline done in the next couple days. Just integrating our new feathers-errors updates. Will be a huge win. |
Apparently one can only require babel once: https://phabricator.babeljs.io/T1019
The text was updated successfully, but these errors were encountered: