24 lines
583 B
JavaScript
24 lines
583 B
JavaScript
/*
|
|
Leaflet building and linting scripts.
|
|
|
|
To use, install Node, then run the following commands in the project root:
|
|
|
|
npm install -g jake
|
|
npm install uglify-js
|
|
npm install jshint
|
|
|
|
To check the code and build Leaflet from source, run "jake"
|
|
|
|
For a custom build, open build/build.html in the browser and follow the instructions.
|
|
*/
|
|
|
|
var build = require('./build/build.js');
|
|
|
|
desc('Check Leaflet source for errors with JSHint');
|
|
task('lint', build.lint);
|
|
|
|
desc('Combine and compress Leaflet source files');
|
|
task('build', ['lint'], build.build);
|
|
|
|
task('default', ['build']);
|