Update Gruntfile.js.

* remove unneeded variable
* move jshint first
* update uglify-js options
This commit is contained in:
XhmikosR
2013-10-18 18:49:07 +03:00
parent a3eccd481f
commit ac59cbd3af
+13 -11
View File
@@ -2,27 +2,29 @@ module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
preserveComments: 'some'
},
build: {
src: 'jquery.mousewheel.js',
dest: 'build/jquery.mousewheel.min.js'
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: ['*.js']
},
uglify: {
options: {
compress: true,
mangle: true,
preserveComments: 'some',
report: 'gzip'
},
build: {
src: 'jquery.mousewheel.js',
dest: 'build/jquery.mousewheel.min.js'
}
}
});
// Load the plugin that provides the 'uglify' task.
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
// Default task(s).
grunt.registerTask('default', ['jshint', 'uglify']);