diff --git a/packages/icons-webfont/.build/build-outline.mjs b/packages/icons-webfont/.build/build-outline.mjs index b0b01ca59..9b69d24e5 100644 --- a/packages/icons-webfont/.build/build-outline.mjs +++ b/packages/icons-webfont/.build/build-outline.mjs @@ -28,8 +28,6 @@ const buildOutline = async () => { filesList[type] = [] await asyncForEach(icons, async function ({ name, content, unicode }) { - console.log(type, name); - if (compileOptions.includeIcons.length === 0 || compileOptions.includeIcons.indexOf(name) >= 0) { if (unicode) { diff --git a/packages/icons-webfont/.build/fix-outline.py b/packages/icons-webfont/.build/fix-outline.py index c15e8e0f6..0d7f927cb 100644 --- a/packages/icons-webfont/.build/fix-outline.py +++ b/packages/icons-webfont/.build/fix-outline.py @@ -13,6 +13,5 @@ glyph.simplify() glyph.simplify() glyph.correctDirection() glyph.export("./" + file) -glyph.clear() print ("Finished fixing svg outline directions!")