@iconify/tools 4.0.0-beta.1 → 4.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/optimise/svgo.cjs +1 -1
- package/lib/optimise/svgo.mjs +1 -1
- package/package.json +1 -1
package/lib/optimise/svgo.cjs
CHANGED
|
@@ -30,7 +30,7 @@ function getSVGOPlugins(options) {
|
|
|
30
30
|
...options.animated ? [] : ["removeUselessStrokeAndFill"],
|
|
31
31
|
// Plugins that modify shapes or are bugged when using animations
|
|
32
32
|
...options.animated || options.keepShapes ? [] : [
|
|
33
|
-
|
|
33
|
+
// 'removeHiddenElems', // bugged: not working before 3.0.4, created broken icons since 3.0.4
|
|
34
34
|
"convertShapeToPath",
|
|
35
35
|
"convertEllipseToCircle",
|
|
36
36
|
{
|
package/lib/optimise/svgo.mjs
CHANGED
|
@@ -28,7 +28,7 @@ function getSVGOPlugins(options) {
|
|
|
28
28
|
...options.animated ? [] : ["removeUselessStrokeAndFill"],
|
|
29
29
|
// Plugins that modify shapes or are bugged when using animations
|
|
30
30
|
...options.animated || options.keepShapes ? [] : [
|
|
31
|
-
|
|
31
|
+
// 'removeHiddenElems', // bugged: not working before 3.0.4, created broken icons since 3.0.4
|
|
32
32
|
"convertShapeToPath",
|
|
33
33
|
"convertEllipseToCircle",
|
|
34
34
|
{
|
package/package.json
CHANGED