mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-13 17:56:55 +00:00
b6fceb2fda
'svgo' upgraded to v2.3.0 This includes: - Replacing .svgo.json with .svgo.config.js - Updating the SVGs files. This amounts to changes in the order of some attributes. - Adding the minify-svg command as part of the npm run test command Bug: T278656 Change-Id: Ia38332be68b8ac47a31caf30272920c0f0c12053
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
/**
|
|
* SVGO Configuration
|
|
* Recommended options from:
|
|
* https://www.mediawiki.org/wiki/Manual:Coding_conventions/SVG#Exemplified_safe_configuration
|
|
*/
|
|
const { extendDefaultPlugins } = require( 'svgo' );
|
|
module.exports = {
|
|
multipass: true,
|
|
plugins: extendDefaultPlugins( [
|
|
{
|
|
name: 'cleanupIDs',
|
|
active: false
|
|
},
|
|
{
|
|
name: 'removeDesc',
|
|
active: false
|
|
},
|
|
{
|
|
name: 'removeRasterImages',
|
|
active: true
|
|
},
|
|
{
|
|
name: 'removeTitle',
|
|
active: false
|
|
},
|
|
{
|
|
name: 'removeViewBox',
|
|
active: false
|
|
},
|
|
{
|
|
// If the SVG doesn't start with an XML declaration, then its MIME type will
|
|
// be detected as "text/plain" rather than "image/svg+xml" by libmagic and,
|
|
// consequently, MediaWiki's CSSMin CSS minifier. libmagic's default database
|
|
// currently requires that SVGs contain an XML declaration:
|
|
// https://github.com/threatstack/libmagic/blob/master/magic/Magdir/sgml#L5
|
|
name: 'removeXMLProcInst',
|
|
active: false
|
|
},
|
|
{
|
|
name: 'sortAttrs',
|
|
active: true
|
|
}
|
|
] ),
|
|
|
|
// Configure the indent (default 4 spaces) used by `--pretty` here:
|
|
// @see https://github.com/svg/svgo/blob/master/lib/svgo/js2svg.js#L6 for more config options
|
|
//
|
|
// Unfortunately EOL cannot be configured, SVGO uses the platform's EOL marker.
|
|
// On non-unix systems the linebreaks will be normalized to LF (unix) only at git commit,
|
|
// assuming `core.autocrlf` is 'true' (default) or 'input'.
|
|
js2svg: {
|
|
indent: "\t",
|
|
pretty: true,
|
|
}
|
|
} |