File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
scripts/inference-providers/scripts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -757,11 +757,11 @@ Object.entries(PER_PROVIDER_TASKS).forEach(([provider, tasks]) => {
757757async function renderTemplate (
758758 templateName : string ,
759759 namespace : string ,
760- data : JsonObject
760+ data : JsonObject ,
761761) : Promise < string > {
762762 console . log ( `🎨 Rendering ${ templateName } (${ namespace } )` ) ;
763763 const template = Handlebars . compile (
764- await readTemplate ( templateName , namespace )
764+ await readTemplate ( templateName , namespace ) ,
765765 ) ;
766766 return template ( data ) ;
767767}
@@ -771,7 +771,7 @@ await Promise.all(
771771 // @ts -ignore
772772 const rendered = await renderTemplate ( task , "task" , DATA ) ;
773773 await writeTaskDoc ( task , rendered ) ;
774- } )
774+ } ) ,
775775) ;
776776
777777await Promise . all (
You can’t perform that action at this time.
0 commit comments