diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-02-23 14:01:03 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-02-23 14:01:03 -0500 |
commit | 8fdfea5fe9f6804840bd98396c1b3992360369a4 (patch) | |
tree | 5b120316da9f4135bc5382c9fd5e078ac0307087 /Gruntfile.js | |
parent | fac8e517d7ea4c65bad21a65ad59eef1e4379efb (diff) | |
download | jquery-ui-8fdfea5fe9f6804840bd98396c1b3992360369a4.tar.gz jquery-ui-8fdfea5fe9f6804840bd98396c1b3992360369a4.zip |
Build: Upgrade to jQuery 1.11.2
Adds jQuery 1.11.0, 1.11.1, 1.11.2, 2.1.0, 2.1.1, 2.1.2, 2.1.3
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 277169a72..69517d778 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -227,7 +227,7 @@ grunt.initConfig({ files: { "qunit/qunit.js": "qunit/qunit/qunit.js", "qunit/qunit.css": "qunit/qunit/qunit.css", - "qunit/MIT-LICENSE.txt": "qunit/MIT-LICENSE.txt", + "qunit/LICENSE.txt": "qunit/LICENSE.txt", "jquery-mousewheel/jquery.mousewheel.js": "jquery-mousewheel/jquery.mousewheel.js", "jquery-mousewheel/LICENSE.txt": "jquery-mousewheel/LICENSE.txt", @@ -238,7 +238,7 @@ grunt.initConfig({ "jshint/jshint.js": "jshint/dist/jshint.js", "jshint/LICENSE": "jshint/LICENSE", - "jquery/jquery.js": "jquery-1.x/jquery.js", + "jquery/jquery.js": "jquery-1.x/dist/jquery.js", "jquery/MIT-LICENSE.txt": "jquery-1.x/MIT-LICENSE.txt", "jquery-1.7.0/jquery.js": "jquery-1.7.0/jquery.js", @@ -277,6 +277,15 @@ grunt.initConfig({ "jquery-1.10.2/jquery.js": "jquery-1.10.2/jquery.js", "jquery-1.10.2/MIT-LICENSE.txt": "jquery-1.10.2/MIT-LICENSE.txt", + "jquery-1.11.0/jquery.js": "jquery-1.11.0/dist/jquery.js", + "jquery-1.11.0/MIT-LICENSE.txt": "jquery-1.11.0/MIT-LICENSE.txt", + + "jquery-1.11.1/jquery.js": "jquery-1.11.1/dist/jquery.js", + "jquery-1.11.1/MIT-LICENSE.txt": "jquery-1.11.1/MIT-LICENSE.txt", + + "jquery-1.11.2/jquery.js": "jquery-1.11.2/dist/jquery.js", + "jquery-1.11.2/MIT-LICENSE.txt": "jquery-1.11.2/MIT-LICENSE.txt", + "jquery-2.0.0/jquery.js": "jquery-2.0.0/jquery.js", "jquery-2.0.0/MIT-LICENSE.txt": "jquery-2.0.0/MIT-LICENSE.txt", @@ -287,7 +296,19 @@ grunt.initConfig({ "jquery-2.0.2/MIT-LICENSE.txt": "jquery-2.0.2/MIT-LICENSE.txt", "jquery-2.0.3/jquery.js": "jquery-2.0.3/jquery.js", - "jquery-2.0.3/MIT-LICENSE.txt": "jquery-2.0.3/MIT-LICENSE.txt" + "jquery-2.0.3/MIT-LICENSE.txt": "jquery-2.0.3/MIT-LICENSE.txt", + + "jquery-2.1.0/jquery.js": "jquery-2.1.0/dist/jquery.js", + "jquery-2.1.0/MIT-LICENSE.txt": "jquery-2.1.0/MIT-LICENSE.txt", + + "jquery-2.1.1/jquery.js": "jquery-2.1.1/dist/jquery.js", + "jquery-2.1.1/MIT-LICENSE.txt": "jquery-2.1.1/MIT-LICENSE.txt", + + "jquery-2.1.2/jquery.js": "jquery-2.1.2/dist/jquery.js", + "jquery-2.1.2/MIT-LICENSE.txt": "jquery-2.1.2/MIT-LICENSE.txt", + + "jquery-2.1.3/jquery.js": "jquery-2.1.3/dist/jquery.js", + "jquery-2.1.3/MIT-LICENSE.txt": "jquery-2.1.3/MIT-LICENSE.txt" } } }, |