🌐 AI搜索 & 代理 主页
Skip to content

Commit 179e2b6

Browse files
committed
Build: Lint the minified jQuery file as well - a Grutfile fix
Code in gh-4594 configured ESLint properly but didn't change the Gruntfile.js config to actually lint the minified file. This has now been fixed. Fixes gh-3075 Ref gh-4594
1 parent 89a18de commit 179e2b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ module.exports = function( grunt ) {
8484
// We have to explicitly declare "src" property otherwise "newer"
8585
// task wouldn't work properly :/
8686
dist: {
87-
src: "dist/jquery.js"
87+
src: [ "dist/jquery.js", "dist/jquery.min.js" ]
8888
},
8989
dev: {
9090
src: [ "src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/**/*.js" ]

0 commit comments

Comments
 (0)