We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc9f60 commit 296272aCopy full SHA for 296272a
apps/react-sdk/src/transpiler/transpiler.ts
@@ -16,7 +16,8 @@ const ROOT_DIR = Path.resolve(__dirname, '../..');
16
* @param options any extra options that should be passed.
17
*/
18
export async function transpileFiles(directory: string, outputDir: string, options?: TranspileFilesOptions) {
19
- const { files, dirs } = await getStatsInDir(directory);
+ let { files, dirs } = await getStatsInDir(directory);
20
+ files = files.filter(f => !f.endsWith("asyncapi-ui.min.js"));
21
if (files.length) {
22
/**
23
* WHEN ADDING PLUGINS to transform the input keep in mind that
0 commit comments