11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import * as plugins from './npmg.plugins'
|
|
import * as npmgInstall from './npmg.install'
|
|
|
|
let npmgSmartcli = new plugins.smartcli.Smartcli()
|
|
|
|
export let run = async () => {
|
|
npmgSmartcli.addCommand('install').then(async (argvArg) => {
|
|
npmgInstall.install('default')
|
|
})
|
|
npmgSmartcli.startParse()
|
|
} |