You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
var watch = require('watch');
|
|
var sass = require('./sass');
|
|
|
|
watch.watchTree('sass', function (f, curr, prev) {
|
|
if (typeof f == "object" && prev === null && curr === null) {
|
|
// Finished walking the tree
|
|
return;
|
|
}
|
|
|
|
sass.render();
|
|
});
|
|
|