Leaflet/Jakefile.js

27 lines
672 B
JavaScript
Raw Permalink Normal View History

2012-12-18 01:15:19 +08:00
/*
2013-02-01 21:17:08 +08:00
Leaflet building, testing 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
2013-02-08 01:00:15 +08:00
npm install
2012-07-12 15:39:22 +08:00
2013-02-08 01:00:15 +08:00
To check the code for errors and build Leaflet from source, run "jake".
To run the tests, run "jake test".
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 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);
2013-02-01 21:17:08 +08:00
desc('Run PhantomJS tests');
2013-01-30 22:06:19 +08:00
task('test', ['lint'], build.test);
2012-02-13 22:25:57 +08:00
task('default', ['build']);