Move .less files to dev/less

This commit is contained in:
Nishanth Shanmugham
2016-07-30 20:52:45 -07:00
parent e32b495b66
commit 7acfda9584
5 changed files with 0 additions and 10 deletions

View File

@@ -1,10 +0,0 @@
const fs = require('fs');
const spawn = require('child_process').spawn;
process.argv.slice(2).forEach(function(file) {
fs.watch(file, function(e) {
if (e === 'change') {
spawn('lessc', ['main.less', 'static/css/main.css']);
}
});
});