UNPKG

@softvisio/cli

Version:
18 lines (13 loc) 332 B
import Command from "#lib/command"; export default class extends Command { // static static cli () { return {}; } // public async run () { const pkg = this._findGitPackage(); if ( !pkg ) return result( [ 500, "Unable to find root package" ] ); return pkg.docs.init(); } }