- [View source↑]
- [History↑]
Contents
Thread title | Replies | Last modified |
---|---|---|
MW 1.36.0 bug (T283244) | 1 | 12:00, 24 June 2021 |
composer.local.json | 0 | 12:03, 30 May 2021 |
Update version used | 1 | 10:36, 24 October 2020 |
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. :)
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+).