fix: Remove unecessary whitespace from SVG contents
```js /* BEFORE */ { circle: "\n <circle cx=\"12\" cy=\"12\" r=\"10\"></circle>\n" } /* AFTER */ { circle: "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle>" } ```
Showing
... | ... | @@ -31,6 +31,7 @@ |
"eslint": "^4.0.0", | ||
"eslint-config-airbnb-base": "^11.2.0", | ||
"eslint-plugin-import": "^2.5.0", | ||
"html-minifier": "^3.5.6", | ||
"husky": "^0.13.4", | ||
"jest": "^21.2.1", | ||
"npm-run-all": "^4.1.2", | ||
... | ... |
Please register or sign in to comment