You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(`${template} generated in ${templateEnd-templateStart}ms`);
}
The code currently processes templates one by one in a serial manner, which might be inefficient if the number of templates is large or if each template takes significant time to process. Using parallel processing could reduce the overall time.
The text was updated successfully, but these errors were encountered:
pix-pdf/src/bin/generate-pdfs.ts
Lines 77 to 83 in 63d7a56
The code currently processes templates one by one in a serial manner, which might be inefficient if the number of templates is large or if each template takes significant time to process. Using parallel processing could reduce the overall time.
The text was updated successfully, but these errors were encountered: