twbs--bootstrap/build/svgo.yml

60 lines
1.4 KiB
YAML
Raw Normal View History

2018-07-09 13:37:49 +00:00
# Usage:
# install svgo globally: `npm i -g svgo`
# svgo --config=build/svgo.yml --input=foo.svg
# https://github.com/svg/svgo/blob/master/docs/how-it-works/en.md
# replace default config
multipass: true
2018-09-15 23:23:07 +00:00
#full: true
2018-07-09 13:37:49 +00:00
# https://github.com/svg/svgo/blob/master/lib/svgo/js2svg.js#L6 for more config options
js2svg:
pretty: true
indent: 2
plugins:
2019-07-22 08:00:09 +00:00
# - addAttributesToSVGElement:
# attributes:
# - focusable: false
2018-07-09 13:37:49 +00:00
- cleanupAttrs: true
- cleanupEnableBackground: true
- cleanupIDs: true
- cleanupListOfValues: true
- cleanupNumericValues: true
- collapseGroups: true
- convertColors: true
- convertPathData: true
- convertShapeToPath: true
- convertStyleToAttrs: true
- convertTransform: true
- inlineStyles: true
- mergePaths: true
- minifyStyles: true
- moveElemsAttrsToGroup: true
- moveGroupAttrsToElems: true
2019-07-22 08:00:09 +00:00
- removeAttrs:
attrs:
- "data-name"
2018-07-09 13:37:49 +00:00
- removeComments: true
- removeDesc: true
- removeDoctype: true
- removeEditorsNSData: true
- removeEmptyAttrs: true
- removeEmptyContainers: true
- removeEmptyText: true
- removeHiddenElems: true
- removeMetadata: true
- removeNonInheritableGroupAttrs: true
- removeTitle: false
- removeUnknownsAndDefaults:
keepRoleAttr: true
2018-07-09 13:37:49 +00:00
- removeUnusedNS: true
- removeUselessDefs: true
- removeUselessStrokeAndFill: true
- removeViewBox: false
- removeXMLNS: false
2018-09-15 23:23:07 +00:00
- removeXMLProcInst: true
2018-07-09 13:37:49 +00:00
- sortAttrs: true