- [View source↑]
- [History↑]
Contents
Thread title | Replies | Last modified |
---|---|---|
MW 1.36.0 bug (T283244) | 1 | 13:00, 24 June 2021 |
composer.local.json | 0 | 13:03, 30 May 2021 |
Update version used | 1 | 11:36, 24 October 2020 |
Collapse
Currently there's a bug in MW 1.36.0 which breaks SMW JavaScript while minification: https://phabricator.wikimedia.org/T283244
A possible workaround might be, changing $wgResourceLoaderDebug = true;
in LocalSettings.php
. But I'm not sure if this is a good idea for production. So I will be patient until T283244 is fixed. :)
Collapse
I needed to enhance composer.local.json
:
{
"require": {
"mediawiki/semantic-media-wiki": "~3.2"
},
"extra": {
"merge-plugin": {
"include": [
"extensions/OATHAuth/composer.json"
]
}
}
}
Without the extra
section I broke the OATHAuth extension (bundled with MW 1.31+).
Collapse
I know there is a blurb about adding the most recent version to the composer file, but would it hurt to have the most recent version number 3.2 in the example?
I feel like this article is the go to for most people, some of whom may not be very experienced.