Skip to content

Commit

Permalink
Code cleanup in grunt.js. Closes gh-984
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhair authored and rwaldron committed Oct 16, 2012
1 parent 420dcc5 commit 45d64e8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions grunt.js
Expand Up @@ -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>",
Expand Down

0 comments on commit 45d64e8

Please sign in to comment.