client/annotviz/gulp/index.js
author rougeronj
Thu, 22 Jan 2015 10:30:36 +0100
changeset 114 9fcb0e0991ed
parent 85 eff9460bd4f2
permissions -rw-r--r--
Add 1 hour to annot timsetamp to catch up the current time
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
85
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
var fs = require('fs');
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
var onlyScripts = require('./util/scriptFilter');
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
var tasks = fs.readdirSync('./gulp/tasks/').filter(onlyScripts);
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
tasks.forEach(function(task) {
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
	require('./tasks/' + task);
eff9460bd4f2 add new visualization + small corrections
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
});