diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-10-22 17:41:54 -0400 |
---|---|---|
committer | Corey Frang <gnarf@gnarf.net> | 2012-10-22 17:04:08 -0500 |
commit | d67522e3290948c0497ab7c6511e9ea29b22b851 (patch) | |
tree | 3c0e8fd9c3dae8dc2da9ea4d1bdeaa3ea2be2141 /build/tasks/build.js | |
parent | 9b908878ae3a9c0fbbd9958b579f223a648c5c69 (diff) | |
download | jquery-ui-d67522e3290948c0497ab7c6511e9ea29b22b851.tar.gz jquery-ui-d67522e3290948c0497ab7c6511e9ea29b22b851.zip |
Build: Upgrade to the latest Grunt and JSHint - Closes gh-786
Diffstat (limited to 'build/tasks/build.js')
-rw-r--r-- | build/tasks/build.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/tasks/build.js b/build/tasks/build.js index 3f3dd31c5..b59c728d3 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -1,6 +1,9 @@ module.exports = function( grunt ) { -var path = require( "path" ); +"use strict"; + +var path = require( "path" ), + fs = require( "fs" ); grunt.registerTask( "manifest", "Generate jquery.json manifest files", function() { var pkg = grunt.config( "pkg" ), |