@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.
@@ -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
- "removeHiddenElems",
33
+ // 'removeHiddenElems', // bugged: not working before 3.0.4, created broken icons since 3.0.4
34
34
  "convertShapeToPath",
35
35
  "convertEllipseToCircle",
36
36
  {
@@ -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
- "removeHiddenElems",
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
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "description": "Collection of functions for cleaning up and parsing SVG for Iconify project",
5
5
  "author": "Vjacheslav Trushkin",
6
- "version": "4.0.0-beta.1",
6
+ "version": "4.0.0-beta.2",
7
7
  "publishConfig": {
8
8
  "tag": "next"
9
9
  },