1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-10-04 09:11:37 +02:00
Files
bootstrap/less/test.js

11 lines
259 B
JavaScript

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)
});