Sha256: ba2110ee7fca2f46c14242e7223e286c81dd379b59c2d2e236628e8c659ffa3a

Contents?: true

Size: 664 Bytes

Versions: 6

Compression:

Stored size: 664 Bytes

Contents

/*
Leaflet.draw 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.Draw source for errors with JSHint');
task('lint', build.lint);

desc('Combine and compress Leaflet.Draw source files');
task('build', ['lint'], build.build);

desc('Run PhantomJS tests');
task('test', ['lint'], build.test);

task('default', ['build']);

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
leaflet-js-0.7.0.4 lib/leaflet.draw/Jakefile.js
leaflet-js-0.7.0.3 lib/leaflet.draw/Jakefile.js
leaflet-js-0.7.0.2 lib/leaflet.draw/Jakefile.js
leaflet-js-0.7.0.1 lib/leaflet.draw/Jakefile.js
leaflet-js-0.7.0 lib/leaflet.draw/Jakefile.js
leaflet-js-0.6.beta4 lib/leaflet.draw/Jakefile.js