Open nolsto opened 9 years ago
Yay!
A couple quick questions:
Release blocker: no docs.
Also, in the docs, we should probably leave a reminder that it's not a good idea to hide things that you aren't comfortable with people seeing, as that info will still be available in the HTML.
Would this be better done as an Extension? (That way we could opt-in/out of it).
Good call. That avoids the kwarg fiddling this relies on now. Could do
# opt-in option
DjangoScssCompiler() # extensions=(DjangoExtension, CompassExtension)
DjangoScssCompiler(extensions=(DjangoDebugExtension. DjangoExtension, CompassExtension))
# opt-out option
DjangoScssCompiler() # extensions=(DjangoDebugExtension, DjangoExtension, CompassExtension)
DjangoScssCompiler(extensions=(DjangoExtension, CompassExtension))
Not sure as to which would be preferred. Thoughts?
Should it be $DEBUG?
Though it looks less like a typical sass variable, that would certainly make a more explicit connection with the Django setting.
I think opt-in might be better. We've got lots of people already using the system and we don't want to suddenly override their variables in any way.
Though it looks less like a typical sass variable, that would certainly make a more explicit connection with the Django setting.
lowercase then
Do you guys actually have a use for this?
I don't yet.
-rocky
On Sat, Jul 25, 2015 at 1:01 AM, Gavin Wahl notifications@github.com wrote:
Do you guys actually have a use for this?
— Reply to this email directly or view it on GitHub https://github.com/fusionbox/django-pyscss/pull/41#issuecomment-124579546 .
maybe better as docs?
An idea from @rockymeza in #32.