Steal build using GruntJS ( https://github.com/cowboy/grunt ).
Arguments: dir example: "todo/scripts/build.js"
grunt.registerHelper('steal', function (dir) {
var done = this.async(),
os = require('os');
grunt.utils.spawn({ cmd: os.platform() == "win32" ? "js.bat" : "./js",
args: [ dir ]
}, function (err, result, code) {
if (err) {
grunt.log.error(err);
return done(false);
}
done();
});
grunt.log.write("Steal building...");
});