alexmingoia / pux-starter-app

Starter Pux app w/ hot-reloading and isomorphic routing and rendering
https://www.purescript-pux.org
BSD 3-Clause "New" or "Revised" License
101 stars 39 forks source link

depricated warnings #19

Closed rosenk closed 8 years ago

rosenk commented 8 years ago

on npm start I've got many warning of the type: Class import from uses deprecated syntax that omits the 'class' keyword

and also: Module has unspecified imports, consider using the explicit form

alexmingoia commented 8 years ago

This is from the PureScript compiler. In 0.8.0 it started warning about unqualified imports, and most of the libraries have not been updated. On the first compilation pass, you'll get lots of warnings. Subsequent compiles should not show the same warnings. This should be changing in PureScript 0.9.0 as well.

rosenk commented 8 years ago

I don't get it. These compiler warnings are meaningful, why not we just fix them?

alexmingoia commented 8 years ago

None of the warnings come from pux or pux-starter-app, they are all from libraries used by pux and pux-starter-app. Eventually, they will all be fixed so as to not produce warnings.