aboutsummaryrefslogtreecommitdiff
path: root/less/test.js
blob: c815d2cc3fec6a65b94cde2910354ed587adf1fd (plain)
1
2
3
4
5
6
7
8
9
10
11
var util = require('util'),
    exec = require('child_process').exec,
    child;

var total = 0;
var start = new(Date);
child = exec('lessc bootstrap.scss', function (error, stdout, stderr) {
	var end = new(Date);
	total = end - start;
	console.log(total)
});