Fork me on GitHub

JSMake

JSMake is a simple Javascript build program with capabilities similar to make.
var message = [];

task('hello', function () {
	message.push('Hello');
});

task('world', function () {
	message.push('World');
});

task('greet', [ 'hello', 'world' ], function () {
	jsmake.Sys.log(message.join(', '));
});

task('default', 'greet');
	

JSMake has the following benefits:

Documentation

Project Wiki contains all available documentation

Download

Release archive on GitHub

Source Code

GitHub repository

License

See LICENSE file included with sources