purescript-contrib / purescript-css

A clean, type-safe library for describing, manipulating and rendering CSS
Apache License 2.0
106 stars 40 forks source link

removes warnings of unspecified imports #36

Closed adarqui closed 8 years ago

adarqui commented 8 years ago

Hi everyone,

Not sure if anyone wants this, but I figured i'd just make the changes and see. I am getting tons of warnings from purescript-css (CSS.purs), so I just basically parsed the warning output, included the imports, and turned Blah(Something...) into Blah(..) with sed; warnings gone. CSS.purs is a bit uglier now because of it, but how else could we get rid of those warnings and keep CSS.purs pretty?

Thanks!

adarqui commented 8 years ago

^^ That just squashes warnings for CSS.purs .. but there are a bunch of other files which produce warnings. If you guys want, I can clean all of those imports up.. I just don't want to do it unless you guys give the go-ahead; not sure what the right approach is here.

peace

adarqui commented 8 years ago

Resolved via https://github.com/slamdata/purescript-css/pull/37

Thanks @garyb !