build: Bump devDependencies to latest

eslint-config-wikimedia      0.4.0  →   0.5.0
 grunt                        1.0.1  →   1.0.2
 grunt-banana-checker         0.5.0  →   0.6.0
 grunt-eslint                19.0.0  →  20.1.0
 grunt-jsonlint               1.0.8  →   1.1.0
 grunt-stylelint              0.6.0  →   0.9.0
 stylelint                    7.8.0  →   8.2.0
 stylelint-config-wikimedia   0.4.1  →   0.4.2

Change-Id: Id081b31764ae923486031255cc5f24bfd6601782
这个提交包含在:
James D. Forrester 2018-02-14 09:21:18 -08:00
父节点 9e98b1c4a5
当前提交 120b01696b
共有 3 个文件被更改,包括 13 次插入13 次删除

查看文件

@ -1,7 +1,7 @@
{
"extends": "stylelint-config-wikimedia",
"rules": {
"selector-no-id": null,
"selector-max-id": null,
"no-descending-specificity": null
}
}

查看文件

@ -23,8 +23,8 @@
.attr( 'title', function () {
return mw.msg(
$( this ).data( 'ct-state' ) === 'collapsed' ?
'categorytree-expand' :
'categorytree-collapse'
'categorytree-expand' :
'categorytree-collapse'
);
} )
.addClass( 'CategoryTreeToggleHandlerAttached' );
@ -52,7 +52,7 @@
function expandNode( $link ) {
// Show the children node
var $children = $link.parents( '.CategoryTreeItem' )
.siblings( '.CategoryTreeChildren' );
.siblings( '.CategoryTreeChildren' );
$children.show();
$link
@ -170,7 +170,7 @@
attachHandler( $children );
} )
.fail( error );
.fail( error );
}
// Register click events

查看文件

@ -4,13 +4,13 @@
"test": "grunt test"
},
"devDependencies": {
"eslint-config-wikimedia": "0.4.0",
"grunt": "1.0.1",
"grunt-banana-checker": "0.5.0",
"grunt-eslint": "19.0.0",
"grunt-jsonlint": "1.0.8",
"grunt-stylelint": "0.6.0",
"stylelint": "7.8.0",
"stylelint-config-wikimedia": "0.4.1"
"eslint-config-wikimedia": "0.5.0",
"grunt": "1.0.2",
"grunt-banana-checker": "0.6.0",
"grunt-eslint": "20.1.0",
"grunt-jsonlint": "1.1.0",
"grunt-stylelint": "0.9.0",
"stylelint": "8.2.0",
"stylelint-config-wikimedia": "0.4.2"
}
}