UNPKG

navee

Version:

NodeJS模块化管理工具

12 lines (9 loc) 327 B
#!/usr/bin/env node 'use strict'; const { install, fetch } = require('../lib/nav-command'); require('yargs') .command('install', 'install current project to remote repository', install) .command('fetch', 'fetch modules of dependencies from repository server', fetch) .help('h') .alias('h', 'help') .argv;