leaflet.mousecoordinate
Version:
A Coordinate Mouse Viewer for Leaflet
75 lines (63 loc) • 2.01 kB
JavaScript
/* global module */
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
separator: ';',
},
dist: {
src: ['src/*.js'],
dest: 'dist/<%= pkg.name %>.js',
},
},
jshint: {
all: ['src/*.js']
},
cssmin:{
options: {
shorthandCompacting: false,
roundingPrecision: -1
},
target: {
files: {
'dist/<%= pkg.name %>.css': ['src/*.css']
}
}
},
csslint: {
strict: {
src: ['src/*.css']
},
},
jsdoc : {
dist : {
src: ['src/*.js'],
options: {
destination: 'doc'
}
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> Copyright by <%= pkg.author.name %> <%= pkg.author.email %> */\n'
},
build: {
src: 'dist/<%= pkg.name %>.js',
dest: 'dist/<%= pkg.name %>.min.js'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.registerTask('check', ['jshint', 'csslint']);
grunt.registerTask('test', ['qunit']);
grunt.registerTask('jenkins', ['jshint', 'qunit']);
grunt.registerTask('default', ['jshint', 'csslint', 'concat', 'uglify', 'cssmin', 'jsdoc']);
};