fix: 优化svg不能去掉fill等属性

This commit is contained in:
harrywan 2024-09-04 09:54:42 +08:00
parent 46f28d6c76
commit 77d2b09121
4 changed files with 46 additions and 45 deletions

View File

@ -2,6 +2,20 @@
"name": "@fesjs/plugin-icon", "name": "@fesjs/plugin-icon",
"version": "3.0.0", "version": "3.0.0",
"description": "@fesjs/plugin-icon", "description": "@fesjs/plugin-icon",
"author": "qlin",
"license": "MIT",
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-plugin-icon"
},
"bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues"
},
"keywords": [
"fes"
],
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [
"lib", "lib",
@ -10,20 +24,6 @@
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": {
"type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-plugin-icon"
},
"keywords": [
"fes"
],
"author": "qlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues"
},
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -1,5 +1,5 @@
import { extname, basename } from 'path'; import { basename, extname } from 'node:path';
import { statSync, readFileSync } from 'fs'; import { readFileSync, statSync } from 'node:fs';
import { optimize } from 'svgo'; import { optimize } from 'svgo';
const presetDefault = [ const presetDefault = [
@ -15,7 +15,7 @@ const presetDefault = [
{ {
name: 'removeAttrs', name: 'removeAttrs',
params: { params: {
attrs: '(fill|stroke|class)', attrs: '(class)',
}, },
}, },
]; ];

View File

@ -1,8 +1,8 @@
import { computed } from 'vue'; import { computed } from 'vue';
// eslint-disable-next-line
import icons from '../icons'; import icons from '../icons';
const noop = () => {}; function noop() {}
export default { export default {
name: 'FesIcon', name: 'FesIcon',

View File

@ -29,6 +29,7 @@
&[tabindex] { &[tabindex] {
cursor: pointer; cursor: pointer;
} }
&--spin { &--spin {
display: inline-block; display: inline-block;
animation: loadingCircle 1s infinite linear; animation: loadingCircle 1s infinite linear;