chore: add vant-cli pacakge

This commit is contained in:
陈嘉涵
2019-08-22 11:46:40 +08:00
parent c5514f73b8
commit 8cca48131e
6 changed files with 67 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env node
const commander = require('commander');
const changelog = require('./changelog');
commander
.command('changelog <dir>')
.option('--tag [tag]', 'Since tag')
.action(changelog);
commander.parse(process.argv);