build: Updating npm dependencies

* eslint-config-wikimedia: 0.27.0 → 0.28.0
  The following rules are failing and were disabled:
  * modules:
    * no-jquery/no-extend

* grunt-stylelint: 0.19.0 → 0.20.0
* stylelint-config-wikimedia: 0.16.1 → 0.17.1

Change-Id: Ifbde191e4d9155dbecc9c395dd89ec06c91c356a
This commit is contained in:
libraryupgrader 2024-06-06 03:14:14 +00:00
parent 64b6fbc38f
commit 7a396da3a1
4 changed files with 1442 additions and 1796 deletions

View file

@ -6,6 +6,7 @@
"wikimedia/mediawiki" "wikimedia/mediawiki"
], ],
"rules": { "rules": {
"max-len": "off" "max-len": "off",
"no-jquery/no-extend": "warn"
} }
} }

View file

@ -415,12 +415,12 @@
} ); } );
// Use jQuery UI resizable() so that users can make the box taller // Use jQuery UI resizable() so that users can make the box taller
// eslint-disable-next-line es-x/no-resizable-and-growable-arraybuffers
container.resizable( { container.resizable( {
handles: 's', handles: 's',
minHeight: $box.height(), minHeight: $box.height(),
resize: function () { resize: function () {
// eslint-disable-next-line es-x/no-resizable-and-growable-arraybuffers
context.codeEditor.resize(); context.codeEditor.resize();
} }
} ); } );

3225
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -8,14 +8,14 @@
}, },
"devDependencies": { "devDependencies": {
"ace-builds": "1.32.7", "ace-builds": "1.32.7",
"eslint-config-wikimedia": "0.27.0", "eslint-config-wikimedia": "0.28.0",
"grunt": "1.6.1", "grunt": "1.6.1",
"grunt-banana-checker": "0.13.0", "grunt-banana-checker": "0.13.0",
"grunt-contrib-clean": "2.0.1", "grunt-contrib-clean": "2.0.1",
"grunt-contrib-copy": "1.0.0", "grunt-contrib-copy": "1.0.0",
"grunt-eslint": "24.3.0", "grunt-eslint": "24.3.0",
"grunt-exec": "3.0.0", "grunt-exec": "3.0.0",
"grunt-stylelint": "0.19.0", "grunt-stylelint": "0.20.0",
"stylelint-config-wikimedia": "0.16.1" "stylelint-config-wikimedia": "0.17.1"
} }
} }