This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
univnautes-old/virtualenv/pffedportal/media/CloudMade-Leaflet/Jakefile.js

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']);