This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-cli/src/index.ts

29 lines
538 B
TypeScript
Raw Normal View History

#!/usr/bin/env node
import commander from "commander"
import create from "./create"
commander
.command('create <name>')
.action(async function (name, cmd) {
await create(name);
})
commander
.command('new <name>')
.action(async function (name, cmd) {
await create(name);
})
commander
.command('dev')
.action(function () {
})
commander
.command('build')
.action(function () {
})
commander
.command('clean')
.action(function () {
})
commander.parse(process.argv)