UNPKG

opendash-cli

Version:

The open.DASH CLI will allow you to create a new open.DASH project on the fly by letting you initialize new instances easly and providing a build process.

16 lines (10 loc) 382 B
#!/usr/bin/env node const program = require("commander"); const pkg = require("../package.json"); // console.log(`open.DASH CLI v${pkg.version}`); program .version(pkg.version) .command("init <template> <name>", "Initiate a new instance or widget.") .command("build", "Build an Instance or a Widget.") .command("clear", "Tool to clear caches.") .parse(process.argv);