diff options
author | Ish <ismail.khair@gmail.com> | 2012-10-16 12:21:17 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2012-10-16 12:21:17 -0400 |
commit | 45d64e8be1f4a6c579466f1a163463c53446fc76 (patch) | |
tree | d58c5902a09b3d71dc82746251dbe8b67d0a70a4 /grunt.js | |
parent | 420dcc58423dcfd3848fb62586da184b914cff22 (diff) | |
download | jquery-45d64e8be1f4a6c579466f1a163463c53446fc76.tar.gz jquery-45d64e8be1f4a6c579466f1a163463c53446fc76.zip |
Code cleanup in grunt.js. Closes gh-984
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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>", |