Skip to content

Commit e1b5396

Browse files
committed
Build: Only support jQuery 3.0 and master
Closes jquery#158
1 parent 2cf01c5 commit e1b5396

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Gruntfile.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ module.exports = function( grunt ) {
3131
],
3232
tests: {
3333
"jquery": [
34-
"dev+2.x-git",
35-
"min+2.x-git.min",
36-
"dev+2.2.2",
37-
"dev+1.x-git",
38-
"dev+1.12.2"
34+
"dev+git",
35+
"min+git.min",
36+
"dev+3.0.0-beta1",
37+
"dev+3.0.0-beta1.min"
3938
]
4039
},
4140
banners: {

test/index.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<title>jQuery Migrate Test Suite</title>
6+
<!-- // Support: IE < 11 -->
67
<!-- Ensure IE doesn't fall back into oldIE modes -->
78
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
89

@@ -17,14 +18,14 @@
1718
TestManager.init({
1819
"jquery": {
1920
urlTag: "jquery",
20-
choices: "dev,min,git,2.2.1,2.1.4,2.0.3,1.12.1,1.11.3,1.10.2,1.9.1,1.8.3,1.7.2,1.6.4"
21+
choices: "dev,min,git,3.0.0"
2122
},
2223
"jquery-migrate": {
2324
urlTag: "plugin",
24-
choices: "dev,min,git,1.0.0,1.1.1,1.2.1"
25+
choices: "dev,min,git,3.0.0"
2526
}
2627
});
27-
TestManager.loadProject( "jquery", "2.x-git" );
28+
TestManager.loadProject( "jquery", "git" );
2829
// Close this script tag so file will load
2930
</script>
3031
<script>

0 commit comments

Comments
 (0)