2012-12-18 01:15:19 +08:00
|
|
|
/*
|
|
|
|
Leaflet building and linting scripts.
|
2011-12-12 08:32:53 +08:00
|
|
|
|
2012-12-18 01:15:19 +08:00
|
|
|
To use, install Node, then run the following commands in the project root:
|
2011-12-12 08:32:53 +08:00
|
|
|
|
2012-12-18 01:15:19 +08:00
|
|
|
npm install -g jake
|
|
|
|
npm install uglify-js
|
|
|
|
npm install jshint
|
2012-07-12 15:39:22 +08:00
|
|
|
|
2012-12-18 01:15:19 +08:00
|
|
|
To check the code and build Leaflet from source, run "jake"
|
2012-02-13 22:25:57 +08:00
|
|
|
|
2012-12-18 01:15:19 +08:00
|
|
|
For a custom build, open build/build.html in the browser and follow the instructions.
|
|
|
|
*/
|
2012-02-13 22:25:57 +08:00
|
|
|
|
2012-12-18 01:15:19 +08:00
|
|
|
var build = require('./build/build.js');
|
2012-02-13 22:25:57 +08:00
|
|
|
|
2012-12-18 01:15:19 +08:00
|
|
|
desc('Check Leaflet source for errors with JSHint');
|
|
|
|
task('lint', build.lint);
|
2011-12-13 01:54:03 +08:00
|
|
|
|
2011-12-13 03:48:20 +08:00
|
|
|
desc('Combine and compress Leaflet source files');
|
2012-12-18 01:15:19 +08:00
|
|
|
task('build', ['lint'], build.build);
|
2011-12-12 04:45:49 +08:00
|
|
|
|
2012-02-13 22:25:57 +08:00
|
|
|
task('default', ['build']);
|