Code cleanup in grunt.js. Closes gh-984

This commit is contained in:
Ish 2012-10-16 12:21:17 -04:00 committed by Rick Waldron
parent 420dcc5842
commit 45d64e8be1

View File

@ -21,14 +21,14 @@ module.exports = function( grunt ) {
return data;
}
var file = grunt.file;
var log = grunt.log;
var verbose = grunt.verbose;
var config = grunt.config;
var distpaths = [
"dist/jquery.js",
"dist/jquery.min.js"
];
var file = grunt.file,
log = grunt.log,
verbose = grunt.verbose,
config = grunt.config,
distpaths = [
"dist/jquery.js",
"dist/jquery.min.js"
];
grunt.initConfig({
pkg: "<json:package.json>",