aurelia-ui-toolkits / demo-kendo

Demo application for Aurelia-KendoUI-plugin
MIT License
3 stars 8 forks source link

core-js@2.4.1 is unsupported for this version of jspm #6

Open adriatic opened 7 years ago

adriatic commented 7 years ago

Just tried to rebuild demo-kendo and observed this warning core-js@2.4.1 is unsupported for this version of jspm.

Two questions:

  1. Why are we still using core-js? Rob announced a year ago that Aurelia does not depend on it any more.

  2. What is really the meaning of this error message? Is it the consequence of us locking jspm to a specific version - which in turn does not support core-js@2.4.1?

JeroenVinke commented 7 years ago

Why are we still using core-js? Rob announced a year ago that Aurelia does not depend on it any more.

Its been so long since I thought about it, but it's because we use in-browser transpilation (we transpile samples written in ES6/ES7 at runtime), and babel-runtime needs more of core-js that is not in aurelia-polyfills.

What is really the meaning of this error message? Is it the consequence of us locking jspm to a specific version - which in turn does not support core-js@2.4.1?

Yes, although it works pretty well for not being supported

adriatic commented 7 years ago

Thanks - makes sense and then I am happy 😄