build: Updating dependencies

composer:
* mediawiki/mediawiki-codesniffer: 38.0.0 → 39.0.0
* mediawiki/mediawiki-phan-config: 0.11.0 → 0.11.1
* php-parallel-lint/php-console-highlighter: 0.5.0 → 1.0.0
* php-parallel-lint/php-parallel-lint: 1.3.1 → 1.3.2

npm:
* eslint-config-wikimedia: 0.20.0 → 0.22.1
* grunt: 1.4.0 → 1.5.2
* grunt-eslint: 23.0.0 → 24.0.0
* async: 3.2.0 → 3.2.3
  * https://github.com/advisories/GHSA-fwr7-v2mv-hh25
  * https://github.com/advisories/GHSA-fwr7-v2mv-hh25

Additional changes:
* Set `name` in package.json.

Change-Id: I7dfe053d1281bab4df8abcbaac84aa2a2f1bf198
This commit is contained in:
libraryupgrader 2022-05-21 08:36:17 +00:00
parent 435db21e8b
commit da266db965
4 changed files with 2091 additions and 1318 deletions

View file

@ -1,10 +1,10 @@
{
"require-dev": {
"mediawiki/mediawiki-codesniffer": "38.0.0",
"mediawiki/mediawiki-phan-config": "0.11.0",
"mediawiki/mediawiki-codesniffer": "39.0.0",
"mediawiki/mediawiki-phan-config": "0.11.1",
"mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "0.5.0",
"php-parallel-lint/php-parallel-lint": "1.3.1"
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.3.2"
},
"scripts": {
"test": [

View file

@ -23,7 +23,7 @@
$context = $context.find( matches[ 1 ] );
}
if ( matches[ 2 ].trim() ) {
$context = $context.closest( matches[ 2 ].substr( 1 ) );
$context = $context.closest( matches[ 2 ].slice( 1 ) );
}
selector = matches[ 3 ].trim();
}

3392
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,15 +1,16 @@
{
"name": "Thanks",
"private": true,
"scripts": {
"minify:svg": "svgo --config=.svgo.config.js --quiet --folder modules/",
"test": "grunt test"
},
"devDependencies": {
"eslint-config-wikimedia": "0.20.0",
"grunt": "1.4.0",
"eslint-config-wikimedia": "0.22.1",
"grunt": "1.5.2",
"grunt-banana-checker": "0.9.0",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "23.0.0",
"grunt-eslint": "24.0.0",
"svgo": "2.8.0"
}
}