Skip to content

Commit 5dfff27

Browse files
committed
Build: Restore ASCII-only output
1 parent f6bd902 commit 5dfff27

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

Gruntfile.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,13 @@ module.exports = function( grunt ) {
8989
"hoist_funs": false,
9090
loops: false
9191
},
92+
output: {
93+
ascii_only: true
94+
},
9295
banner: "/*! Sizzle v<%= pkg.version %> | (c) " +
9396
"JS Foundation and other contributors | js.foundation */",
9497
sourceMap: true,
95-
sourceMapName: "dist/sizzle.min.map",
96-
ASCIIOnly: true
98+
sourceMapName: "dist/sizzle.min.map"
9799
}
98100
}
99101
},
@@ -146,7 +148,12 @@ module.exports = function( grunt ) {
146148
},
147149
src: [ files.source ]
148150
},
149-
grunt: files.grunt,
151+
grunt: {
152+
options: {
153+
requireCamelCaseOrUpperCaseIdentifiers: null
154+
},
155+
src: [ files.grunt ]
156+
},
150157
speed: [ files.speed ],
151158
tests: {
152159
options: {

dist/sizzle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Released under the MIT license
77
* https://js.foundation/
88
*
9-
* Date: 2016-12-02
9+
* Date: 2017-09-01
1010
*/
1111
(function( window ) {
1212

0 commit comments

Comments
 (0)