2023-05-29 00:44:08 +00:00
|
|
|
#!/usr/bin/env node
|
2023-07-23 00:27:41 +00:00
|
|
|
import yargs from "yargs"
|
|
|
|
import { hideBin } from "yargs/helpers"
|
2023-08-27 22:59:51 +00:00
|
|
|
import {
|
|
|
|
handleBuild,
|
|
|
|
handleCreate,
|
|
|
|
handleUpdate,
|
|
|
|
handleRestore,
|
|
|
|
handleSync,
|
|
|
|
} from "./cli/handlers.js"
|
|
|
|
import { CommonArgv, BuildArgv, CreateArgv, SyncArgv } from "./cli/args.js"
|
|
|
|
import { version } from "./cli/constants.js"
|
2023-08-03 06:29:28 +00:00
|
|
|
|
2023-05-30 15:02:20 +00:00
|
|
|
yargs(hideBin(process.argv))
|
|
|
|
.scriptName("quartz")
|
|
|
|
.version(version)
|
2023-07-23 00:27:41 +00:00
|
|
|
.usage("$0 <cmd> [args]")
|
2023-08-26 20:21:44 +00:00
|
|
|
.command("create", "Initialize Quartz", CreateArgv, async (argv) => {
|
2023-08-27 22:59:51 +00:00
|
|
|
await handleCreate(argv)
|
2023-07-05 07:16:06 +00:00
|
|
|
})
|
2023-07-23 00:27:41 +00:00
|
|
|
.command("update", "Get the latest Quartz updates", CommonArgv, async (argv) => {
|
2023-08-27 22:59:51 +00:00
|
|
|
await handleUpdate(argv)
|
2023-07-16 17:39:35 +00:00
|
|
|
})
|
2023-08-18 04:24:41 +00:00
|
|
|
.command(
|
|
|
|
"restore",
|
|
|
|
"Try to restore your content folder from the cache",
|
|
|
|
CommonArgv,
|
|
|
|
async (argv) => {
|
2023-08-27 22:59:51 +00:00
|
|
|
await handleRestore(argv)
|
2023-08-18 04:24:41 +00:00
|
|
|
},
|
|
|
|
)
|
2023-07-23 00:27:41 +00:00
|
|
|
.command("sync", "Sync your Quartz to and from GitHub.", SyncArgv, async (argv) => {
|
2023-08-27 22:59:51 +00:00
|
|
|
await handleSync(argv)
|
2023-07-16 17:39:35 +00:00
|
|
|
})
|
2023-07-23 00:27:41 +00:00
|
|
|
.command("build", "Build Quartz into a bundle of static HTML files", BuildArgv, async (argv) => {
|
2023-08-27 22:59:51 +00:00
|
|
|
await handleBuild(argv)
|
2023-05-30 15:02:20 +00:00
|
|
|
})
|
|
|
|
.showHelpOnFail(false)
|
|
|
|
.help()
|
|
|
|
.strict()
|
2023-07-23 00:27:41 +00:00
|
|
|
.demandCommand().argv
|