-
Notifications
You must be signed in to change notification settings - Fork 376
Conversation
@plondon i'll merge this and release a new beta for all libs to make sure there is no consequence for them. |
The removal of Apps now throw Could this be reverted, or possibly have it changed to a more targeted babel config if there is one? |
even if you do |
Thanks - I was sure we had tried that and hadn't resolved it, but it is working now. |
yeah it's a annoying restriction. I'm still not sure what's the correct answer. we'll also try to use babel 7 in a near future |
this is unused since LedgerHQ#228
Any plan in reverting this? |
Current trade-offs is to do this in your side: |
That's not sound :/ |
this trade-off allow to make the library works both on babel 6 and babel 7 from my understanding. I'm happy to find a better solution, not sure if there are any consensus on this in JS libraries |
A possible fix could be to increase the compatibility level so I beliebe typescript is better for libraries, because it doesnt require babel or any external polyfill and you can target the version of js you want without cross dependencies, you can even use async await in ES3. But I know that that requires a huge migration effort that may be impossible. Please take it into consideration for future libraries. |
definitely would consider TS for 2019 |
I think you can use babel-runtime if it adds value. You just need to make it a runtime dependency for every package you publish, not an (unpublished) dependency in the lerna root. |
No description provided.