Skip to content

Commit 7c7a271

Browse files
committed
Build: Update dependencies
1 parent 5ee8f69 commit 7c7a271

File tree

5 files changed

+5944
-968
lines changed

5 files changed

+5944
-968
lines changed

.eslintrc-browser.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323

2424
"rules": {
2525
"one-var": [ "error", { "var": "always" } ],
26-
"strict": [ "error", "function" ]
26+
"strict": [ "error", "function" ],
27+
28+
// Support: IE <=9 only, Android <=4.0 only
29+
// Allow square bracket notation for ES3 reserved words
30+
"dot-notation": [ "error", { "allowKeywords": false } ]
2731
}
2832
}

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,17 +141,17 @@ module.exports = function( grunt ) {
141141
sourceMapName: "dist/jquery-migrate.min.map",
142142
report: "min",
143143
output: {
144-
"ascii_only": true,
144+
ascii_only: true,
145145

146146
// Support: Android 4.0 only
147147
// UglifyJS 3 breaks Android 4.0 if this option is not enabled.
148-
// This is in lieu of setting ie8 for all of mangle, compress, and output
149-
"ie8": true
148+
// This is in lieu of setting ie for all of mangle, compress, and output
149+
ie: true
150150
},
151151
banner: "/*! jQuery Migrate v<%= pkg.version %>" +
152152
" | (c) <%= pkg.author.name %> | jquery.org/license */",
153153
compress: {
154-
"hoist_funs": false,
154+
hoist_funs: false,
155155
loops: false,
156156

157157
// Support: IE <11

0 commit comments

Comments
 (0)