mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-03 22:49:47 +00:00 
			
		
		
		
	format
This commit is contained in:
		@@ -86,8 +86,8 @@ const BuildArgv = {
 | 
			
		||||
  },
 | 
			
		||||
  concurrency: {
 | 
			
		||||
    number: true,
 | 
			
		||||
    describe: "how many threads to use to parse notes"
 | 
			
		||||
  }
 | 
			
		||||
    describe: "how many threads to use to parse notes",
 | 
			
		||||
  },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function escapePath(fp) {
 | 
			
		||||
 
 | 
			
		||||
@@ -118,7 +118,8 @@ export async function parseMarkdown(ctx: BuildCtx, fps: FilePath[]): Promise<Pro
 | 
			
		||||
  const log = new QuartzLogger(argv.verbose)
 | 
			
		||||
 | 
			
		||||
  const CHUNK_SIZE = 128
 | 
			
		||||
  let concurrency = ctx.argv.concurrency ?? (fps.length < CHUNK_SIZE ? 1 : os.availableParallelism())
 | 
			
		||||
  let concurrency =
 | 
			
		||||
    ctx.argv.concurrency ?? (fps.length < CHUNK_SIZE ? 1 : os.availableParallelism())
 | 
			
		||||
 | 
			
		||||
  let res: ProcessedContent[] = []
 | 
			
		||||
  log.start(`Parsing input files using ${concurrency} threads`)
 | 
			
		||||
 
 | 
			
		||||
@@ -16,4 +16,3 @@ export const options: sourceMapSupport.Options = {
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -11,10 +11,10 @@ export function trace(msg: string, err: Error) {
 | 
			
		||||
  lines.push("")
 | 
			
		||||
  lines.push(
 | 
			
		||||
    "\n" +
 | 
			
		||||
    chalk.bgRed.black.bold(" ERROR ") +
 | 
			
		||||
    "\n" +
 | 
			
		||||
    chalk.red(` ${msg}`) +
 | 
			
		||||
    (err.message.length > 0 ? `: ${err.message}` : ""),
 | 
			
		||||
      chalk.bgRed.black.bold(" ERROR ") +
 | 
			
		||||
      "\n" +
 | 
			
		||||
      chalk.red(` ${msg}`) +
 | 
			
		||||
      (err.message.length > 0 ? `: ${err.message}` : ""),
 | 
			
		||||
  )
 | 
			
		||||
 | 
			
		||||
  if (!stack) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user