Sha256: 063812097c10d0c75cf4ee8911e150466bc0d8be6f6cba6080afedb28abf33fc
Contents?: true
Size: 520 Bytes
Versions: 7
Compression:
Stored size: 520 Bytes
Contents
/* Leaflet.label 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.label from source, run "jake" */ var build = require('./build/build.js'); desc('Check Leaflet.label source for errors with JSHint'); task('lint', build.lint); desc('Combine and compress Leaflet.label source files'); task('build', ['lint'], build.build); task('default', ['build']);
Version data entries
7 entries across 7 versions & 1 rubygems