mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-08-15 22:36:58 +00:00
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
var build = require('./build/build.js'),
|
|
lint = require('./build/hint.js');
|
|
|
|
var COPYRIGHT = "/*\r\n Copyright (c) 2010-2011, CloudMade, Vladimir Agafonkin\r\n" +
|
|
" Leaflet is a modern open-source JavaScript library for interactive maps.\n" +
|
|
" http://leaflet.cloudmade.com\r\n*/\r\n";
|
|
|
|
desc('Check Leaflet source for errors with JSHint');
|
|
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');
|
|
}
|
|
});
|
|
|
|
desc('Combine and compress Leaflet source files');
|
|
task('build', ['lint'], function (compsBase32, buildName) {
|
|
var name = buildName || 'custom',
|
|
path = 'dist/leaflet' + (compsBase32 ? '-' + name : '');
|
|
|
|
var files = build.getFiles(compsBase32);
|
|
|
|
console.log('Concatenating ' + files.length + ' files...');
|
|
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...');
|
|
var compressed = COPYRIGHT + build.uglify(content);
|
|
console.log('\tCompressed size: ' + compressed.length);
|
|
|
|
build.save(path + '.js', compressed);
|
|
console.log('\tSaved to ' + path);
|
|
});
|
|
|
|
task('default', ['build']); |