feathersjs-ecosystem / client

[MOVED] Client side Feathers build
https://github.com/feathersjs/feathers
MIT License
111 stars 27 forks source link

Allow feathers client to work in IE 11 #198

Closed Jackleberry closed 7 years ago

Jackleberry commented 7 years ago

Feathers client was not working in IE 11 due to use of Object.assign and Promise. I have put polyfills in for those and now it is working and all tests are still running correctly. This is pretty urgent for us for our live deployment.

daffl commented 7 years ago

As a reference (assuming this was why it was closed), the client documentation does state:

Important: The Feathers client libraries come transpiled to ES5 but require ES6 shims either through the babel-polyfill module or by including core.js in older browsers e.g. via <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/core-js/2.1.4/core.min.js"></script>

Jackleberry commented 7 years ago

Yes I realised that and closed it, thanks for the reference