Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-10-01 13:02:25 +0300
committerGitHub <noreply@github.com>2021-10-01 13:02:25 +0300
commit4103bcb495d3367f085c2b865aff2f00aeec0183 (patch)
tree8057a1ba9402e5333f66b4d3899a1da4531e9fa9 /svgo.config.js
parentf6974f3d790fc6ebffa78789badcb420ab2067e4 (diff)
Update svgo to v2.7.0. (#982)
Diffstat (limited to 'svgo.config.js')
-rw-r--r--svgo.config.js46
1 files changed, 18 insertions, 28 deletions
diff --git a/svgo.config.js b/svgo.config.js
index 01404136f..3458e49b1 100644
--- a/svgo.config.js
+++ b/svgo.config.js
@@ -1,39 +1,29 @@
'use strict'
-const { extendDefaultPlugins } = require('svgo')
-
module.exports = {
multipass: true,
js2svg: {
pretty: true,
indent: 2
},
- plugins: extendDefaultPlugins([
- {
- name: 'cleanupListOfValues'
- },
- {
- name: 'removeAttrs',
- params: {
- attrs: [
- 'data-name',
- 'fill',
- 'clip-rule'
- ]
- }
- },
- {
- name: 'removeUnknownsAndDefaults',
- params: {
- keepRoleAttr: true
+ plugins: [{
+ name: 'preset-default',
+ params: {
+ overrides: {
+ cleanupListOfValues: true,
+ removeAttrs: {
+ attrs: [
+ 'data-name',
+ 'fill',
+ 'clip-rule'
+ ]
+ },
+ removeUnknownsAndDefaults: {
+ keepRoleAttr: true
+ },
+ removeViewBox: false,
+ sortAttrs: true
}
- },
- {
- name: 'removeViewBox',
- active: false
- },
- {
- name: 'sortAttrs'
}
- ])
+ }]
}