diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-06-24 08:48:01 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-06-24 22:45:54 -0400 |
commit | a0fea7d849a2d0a949cfde8ea1c2edbf2a94d963 (patch) | |
tree | b7d2b621ecb93409a2ab2beb572f06defe8b27fe /Gruntfile.js | |
parent | 66032703e87f25d64385d94002c5f4eb1afca2fb (diff) | |
download | jquery-ui-a0fea7d849a2d0a949cfde8ea1c2edbf2a94d963.tar.gz jquery-ui-a0fea7d849a2d0a949cfde8ea1c2edbf2a94d963.zip |
Bower: Change jquery dependency to >=1.6 (don't limit max version)
Fixes #10110
Closes gh-1266
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index e1638dcb6..6a711962b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -221,6 +221,7 @@ grunt.initConfig({ all: { options: { clean: true, + ignore: [ "jquery" ], destPrefix: "external" }, files: { @@ -233,8 +234,8 @@ grunt.initConfig({ "jshint/jshint.js": "jshint/dist/jshint.js", "jshint/LICENSE": "jshint/LICENSE", - "jquery/jquery.js": "jquery/jquery.js", - "jquery/MIT-LICENSE.txt": "jquery/MIT-LICENSE.txt", + "jquery/jquery.js": "jquery-1.x/jquery.js", + "jquery/MIT-LICENSE.txt": "jquery-1.x/MIT-LICENSE.txt", "jquery-1.6.0/jquery.js": "jquery-1.6.0/jquery.js", "jquery-1.6.0/MIT-LICENSE.txt": "jquery-1.6.0/MIT-LICENSE.txt", |