UNPKG

nuxthub

Version:

Interface with the NuxtHub platform from the command line.

56 lines (52 loc) 1.46 kB
#!/usr/bin/env node import { dirname, resolve } from 'path' import { fileURLToPath } from 'url' import { defineCommand, runMain } from 'citty' import updateNotifier from 'update-notifier' import { loadJsonFileSync } from 'load-json-file' import consola from 'consola' import { colors } from 'consola/utils' import init from './commands/init.mjs' import link from './commands/link.mjs' import unlink from './commands/unlink.mjs' import login from './commands/login.mjs' import logout from './commands/logout.mjs' import logs from './commands/logs.mjs' import whoami from './commands/whoami.mjs' import preview from './commands/preview.mjs' import deploy from './commands/deploy.mjs' import open from './commands/open.mjs' import manage from './commands/manage.mjs' import database from './commands/database.mjs' import ensure from './commands/ensure.mjs' const __dirname = dirname(fileURLToPath(import.meta.url)) const pkg = loadJsonFileSync(resolve(__dirname, '../package.json')) updateNotifier({ pkg }).notify({ isGlobal: true }) const main = defineCommand({ meta: { name: 'nuxthub', description: 'NuxtHub CLI', version: pkg.version, }, setup({ args, cmd }) { if (args._.length) { consola.log(colors.gray(`${cmd.meta.description}`)) } }, subCommands: { init, deploy, preview, link, unlink, open, manage, login, logout, logs, whoami, database, ensure }, }) runMain(main)