svgtofont
Advanced tools
Comparing version 6.1.0 to 6.1.1
@@ -133,2 +133,6 @@ import path from 'path'; | ||
} | ||
const svgPath = path.join(options.dist, options.fontName + ".svg"); | ||
if (excludeFormat.includes('svg')) { | ||
fs.removeSync(svgPath); | ||
} | ||
if (options.css) { | ||
@@ -135,0 +139,0 @@ const styleTemplatePath = options.styleTemplates || path.resolve(__dirname, 'styles'); |
{ | ||
"name": "svgtofont", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"description": "Converts SVG to TTF/EOT/WOFF/WOFF2/SVG format fonts.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://jaywcjlove.github.io/svgtofont/", |
@@ -335,2 +335,6 @@ import path from 'path'; | ||
} | ||
const svgPath = path.join(options.dist, options.fontName + ".svg"); | ||
if (excludeFormat.includes('svg')) { | ||
fs.removeSync(svgPath) | ||
} | ||
@@ -337,0 +341,0 @@ if (options.css) { |
Sorry, the diff of this file is not supported yet
148212
2070