Automatically optimise SVG assets (#5467)

* add svgo as dev dep

* prefer viewbox

* manual config

* fix config param names

* align config with svgomg

* add lint-staged svgo hook

* edit hook

* add trailing whitespace plugin

* run svgo on existing assets
This commit is contained in:
Samuel Newman
2024-09-24 15:31:41 +01:00
committed by GitHub
parent a1e212ab59
commit b626b93417
98 changed files with 239 additions and 99 deletions
+64
View File
@@ -0,0 +1,64 @@
const preset = [
"removeDoctype",
"removeXMLProcInst",
"removeComments",
"removeMetadata",
"removeEditorsNSData",
"cleanupAttrs",
"mergeStyles",
"inlineStyles",
"minifyStyles",
"cleanupIds",
"removeUselessDefs",
"cleanupNumericValues",
"convertColors",
"removeUnknownsAndDefaults",
"removeNonInheritableGroupAttrs",
"removeUselessStrokeAndFill",
"removeDimensions",
"cleanupEnableBackground",
"removeHiddenElems",
"removeEmptyText",
"convertShapeToPath",
"convertEllipseToCircle",
"moveElemsAttrsToGroup",
"moveGroupAttrsToElems",
"collapseGroups",
"convertPathData",
"convertTransform",
"removeEmptyAttrs",
"removeEmptyContainers",
"removeUnusedNS",
"mergePaths",
"sortAttrs",
"sortDefsChildren",
"removeTitle",
"removeDesc",
]
export default {
plugins: [...preset.map(name => ({
name,
params: {
floatPrecision: 3,
transformPrecision: 5,
// minimise diff in ouput from svgomg
// maybe remove in future? will produce smaller output
convertToZ: false,
removeUseless: false,
}
})),
{
name: 'addTrailingWhitespace',
fn() {
return {
root: {
exit (root) {
root.children.push({ type: 'text', value: '\n' })
return root
}
}
}
}
}]
};