Sha256: bf205bd8d10b7bfd36ee1890649b1bacd4c54e532a04895aaef11282fd459225
Contents?: true
Size: 1.86 KB
Versions: 3
Compression:
Stored size: 1.86 KB
Contents
var build = require('./build/build.js'), lint = require('./build/hint.js'); var crlf = '\r\n', COPYRIGHT = '/*' + crlf + ' Copyright (c) 2010-2011, CloudMade, Vladimir Agafonkin' + crlf + ' Leaflet is a modern open-source JavaScript library for interactive maps.' + crlf + ' http://leaflet.cloudmade.com' + crlf + '*/' + crlf; 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 pathPart = 'dist/leaflet' + (buildName ? '-' + buildName : ''), srcPath = pathPart + '-src.js', path = pathPart + '.js'; var files = build.getFiles(compsBase32); console.log('Concatenating ' + files.length + ' files...'); var content = build.combineFiles(files); var oldSrc = build.load(srcPath), newSrc = COPYRIGHT + content, srcDelta = build.getSizeDelta(newSrc, oldSrc); console.log('\tUncompressed size: ' + newSrc.length + ' bytes (' + srcDelta + ')'); if (newSrc === oldSrc) { console.log('\tNo changes'); } else { build.save(srcPath, newSrc); console.log('\tSaved to ' + srcPath); } console.log('Compressing...'); var oldCompressed = build.load(path), newCompressed = COPYRIGHT + build.uglify(content), delta = build.getSizeDelta(newCompressed, oldCompressed); console.log('\tCompressed size: ' + newCompressed.length + ' bytes (' + delta + ')'); if (newCompressed === oldCompressed) { console.log('\tNo changes'); } else { build.save(path, newCompressed); console.log('\tSaved to ' + path); } }); task('default', ['build']);
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
leaflet-ruby-0.3.beta4 | lib/leaflet/Jakefile.js |
leaflet-ruby-0.3.beta3 | lib/leaflet/Jakefile.js |
leaflet-ruby-0.3.beta1 | lib/leaflet/Jakefile.js |