Skip to content

Commit a0fea7d

Browse files
committed
Bower: Change jquery dependency to >=1.6 (don't limit max version)
Fixes #10110 Closes jquerygh-1266
1 parent 6603270 commit a0fea7d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Gruntfile.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ grunt.initConfig({
221221
all: {
222222
options: {
223223
clean: true,
224+
ignore: [ "jquery" ],
224225
destPrefix: "external"
225226
},
226227
files: {
@@ -233,8 +234,8 @@ grunt.initConfig({
233234
"jshint/jshint.js": "jshint/dist/jshint.js",
234235
"jshint/LICENSE": "jshint/LICENSE",
235236

236-
"jquery/jquery.js": "jquery/jquery.js",
237-
"jquery/MIT-LICENSE.txt": "jquery/MIT-LICENSE.txt",
237+
"jquery/jquery.js": "jquery-1.x/jquery.js",
238+
"jquery/MIT-LICENSE.txt": "jquery-1.x/MIT-LICENSE.txt",
238239

239240
"jquery-1.6.0/jquery.js": "jquery-1.6.0/jquery.js",
240241
"jquery-1.6.0/MIT-LICENSE.txt": "jquery-1.6.0/MIT-LICENSE.txt",

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"tests"
99
],
1010
"dependencies": {
11-
"jquery": ">=1.6 <1.11"
11+
"jquery": ">=1.6"
1212
},
1313
"devDependencies": {
1414
"jquery-mousewheel": "3.1.11",
@@ -32,7 +32,7 @@
3232
"jquery-1.10.0": "jquery#1.10.0",
3333
"jquery-1.10.1": "jquery#1.10.1",
3434
"jquery-1.10.2": "jquery#1.10.2",
35-
"jquery": "jquery#1.10.2",
35+
"jquery-1.x": "jquery#1.10.2",
3636
"jquery-2.0.0": "jquery#2.0.0",
3737
"jquery-2.0.1": "jquery#2.0.1",
3838
"jquery-2.0.2": "jquery#2.0.2",

0 commit comments

Comments
 (0)