We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f954457 commit e4a54ffCopy full SHA for e4a54ff
package.json
@@ -18,7 +18,7 @@
18
"exports": {
19
".": {
20
"types": "./dist/commands/index.d.ts",
21
- "import": "./dist/commands/index.js"
+ "default": "./dist/commands/index.js"
22
}
23
},
24
"scripts": {
src/commands/generate-icon-fonts/index.ts
@@ -35,9 +35,6 @@ export const generateIconFonts = async (
35
const subTemporaryDir = `${temporaryDirectory}/${directory}`;
36
debugLog(debug, `svgToFont for ${subTemporaryDir}`);
37
await svgToFont(subTemporaryDir, subDist, values);
38
-
39
- rmSync(`${subDist}/symbol.html`);
40
- rmSync(`${subDist}/unicode.html`);
41
42
43
if (overwriteSources && iconPaths) {
0 commit comments