The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 41 lines 1.2 kB view raw
1#!/usr/bin/env -S node --no-deprecation 2import yargs from "yargs" 3import { hideBin } from "yargs/helpers" 4import { 5 handleBuild, 6 handleCreate, 7 handleUpdate, 8 handleRestore, 9 handleSync, 10} from "./cli/handlers.js" 11import { CommonArgv, BuildArgv, CreateArgv, SyncArgv } from "./cli/args.js" 12import { version } from "./cli/constants.js" 13 14yargs(hideBin(process.argv)) 15 .scriptName("quartz") 16 .version(version) 17 .usage("$0 <cmd> [args]") 18 .command("create", "Initialize Quartz", CreateArgv, async (argv) => { 19 await handleCreate(argv) 20 }) 21 .command("update", "Get the latest Quartz updates", CommonArgv, async (argv) => { 22 await handleUpdate(argv) 23 }) 24 .command( 25 "restore", 26 "Try to restore your content folder from the cache", 27 CommonArgv, 28 async (argv) => { 29 await handleRestore(argv) 30 }, 31 ) 32 .command("sync", "Sync your Quartz to and from GitHub.", SyncArgv, async (argv) => { 33 await handleSync(argv) 34 }) 35 .command("build", "Build Quartz into a bundle of static HTML files", BuildArgv, async (argv) => { 36 await handleBuild(argv) 37 }) 38 .showHelpOnFail(false) 39 .help() 40 .strict() 41 .demandCommand().argv