Leaflet/Jakefile.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

var build = require('./build/build.js'),
lint = require('./build/hint.js');
2011-12-12 08:32:53 +08:00
var COPYRIGHT = "/*\n Copyright (c) 2010-2011, CloudMade, Vladimir Agafonkin\n" +
" Leaflet is a modern open source JavaScript library for interactive maps.\n" +
" http://leaflet.cloudmade.com\n*/\n";
task('lint', function () {
var files = build.getFiles();
console.log('Checking for JS errors...');
var errorsFound = lint.jshint(files);
if (errorsFound > 0) {
console.log(errorsFound + ' error(s) found.\n');
fail();
} else {
console.log('\tCheck passed');
}
});
task('build', ['lint'], function (compsBase32, buildName) {
var name = buildName || 'custom',
path = 'dist/leaflet' + (compsBase32 ? '-' + name : '');
2011-12-12 08:32:53 +08:00
2011-12-12 18:44:16 +08:00
var files = build.getFiles(compsBase32);
2011-12-12 08:32:53 +08:00
console.log('Concatenating ' + files.length + ' files...');
2011-12-12 18:44:16 +08:00
var content = build.combineFiles(files);
console.log('\tUncompressed size: ' + content.length);
build.save(path + '-src.js', COPYRIGHT + content);
console.log('\tSaved to ' + path);
console.log('Compressing...');
2011-12-12 18:44:16 +08:00
var compressed = COPYRIGHT + build.uglify(content);
console.log('\tCompressed size: ' + compressed.length);
2011-12-12 08:32:53 +08:00
build.save(path + '.js', compressed);
console.log('\tSaved to ' + path);
});
task('default', ['build']);