update feature list

This commit is contained in:
Jacky Zhao
2023-07-23 15:37:06 -07:00
parent 9590dc76a4
commit 2473a91486
3 changed files with 31 additions and 14 deletions

15
quartz/ctx.ts Normal file
View File

@ -0,0 +1,15 @@
import { QuartzConfig } from "./cfg"
export interface Argv {
directory: string
verbose: boolean
output: string
serve: boolean
port: number
}
export interface BuildCtx {
argv: Argv
version: string
cfg: QuartzConfig
}

View File