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 a15bbac commit 69e9fbcCopy full SHA for 69e9fbc
packages/cubejs-schema-compiler/src/compiler/DataSchemaCompiler.ts
@@ -759,7 +759,9 @@ export class DataSchemaCompiler {
759
compiledFiles[file.fileName] = true;
760
761
if (file.convertedToJs) {
762
+ const compileJsFileTimer = perfTracker.start('compileJsFile (convertedToJs)');
763
this.compileJsFile(file, errorsReport);
764
+ compileJsFileTimer.end();
765
} else if (file.fileName.endsWith('.js')) {
766
this.compileJsFile(file, errorsReport, { doSyntaxCheck });
767
} else if (file.fileName.endsWith('.yml.jinja') || file.fileName.endsWith('.yaml.jinja') ||
0 commit comments