* checkpoint * make emitters async generators * fix * custom font spec * replace spinner, use disk cache for fonts * use readline instead * make og images look nice
		
			
				
	
	
		
			21 lines
		
	
	
		
			643 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			643 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import path from "path"
 | 
						|
import fs from "fs"
 | 
						|
import { BuildCtx } from "../../util/ctx"
 | 
						|
import { FilePath, FullSlug, joinSegments } from "../../util/path"
 | 
						|
import { Readable } from "stream"
 | 
						|
 | 
						|
type WriteOptions = {
 | 
						|
  ctx: BuildCtx
 | 
						|
  slug: FullSlug
 | 
						|
  ext: `.${string}` | ""
 | 
						|
  content: string | Buffer | Readable
 | 
						|
}
 | 
						|
 | 
						|
export const write = async ({ ctx, slug, ext, content }: WriteOptions): Promise<FilePath> => {
 | 
						|
  const pathToPage = joinSegments(ctx.argv.output, slug + ext) as FilePath
 | 
						|
  const dir = path.dirname(pathToPage)
 | 
						|
  await fs.promises.mkdir(dir, { recursive: true })
 | 
						|
  await fs.promises.writeFile(pathToPage, content)
 | 
						|
  return pathToPage
 | 
						|
}
 |