Skip to content

Commit

Permalink
fix(compilation): adjust generated UMD output directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed Jun 14, 2022
1 parent 32aaa8c commit 4b9d12a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/converters/files.converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const compileTypeScriptToJS = async (
break;
case SVG_TO_TS_COMPILATION_OUTPUT.ESM_AND_UMD:
compileToEsNext(generatedTypeScriptFilePaths, `${outputDirectory}/esm`);
compileToUMD(generatedTypeScriptFilePaths, `${outputDirectory}/cjs`);
compileToUMD(generatedTypeScriptFilePaths, `${outputDirectory}/umd`);
deleteFiles(generatedTypeScriptFilePaths);
await deleteFolder(`${outputDirectory}/build`);
break;
Expand Down

0 comments on commit 4b9d12a

Please sign in to comment.