Quartz / Chartbuilder

A front-end charting application that facilitates easy creation of simple beautiful charts
http://quartz.github.io/Chartbuilder
MIT License
2.1k stars 354 forks source link

Tmp directory in Gulp file #190

Closed petulla closed 8 years ago

petulla commented 8 years ago

@nsonnad, what is the tmp path/directory supposed to be utilized for? I don't see any gulp streams to it , but it is setup in config and in the clean task. Can the object key be deleted from config?

nsonnad commented 8 years ago

Hey @petulla, good catch and thanks for pointing out. It looks like this is cruft from when we were using a preprocessor to strip out conditional code blocks for prod/dev environments. We are now using envify which is smarter and doesn't require a temporary staging directory, previously we had to preprocess the files then put them somewhere for browserify/stylus/etc to look.

Short answer: yes it can be deleted

petulla commented 8 years ago

Thanks.