mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-04 23:06:35 +08:00
17 lines
341 B
JavaScript
Executable File
17 lines
341 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const commander = require('commander');
|
|
const changelog = require('./changelog');
|
|
const commitLint = require('./commit-lint');
|
|
|
|
commander
|
|
.command('changelog <dir>')
|
|
.option('--tag [tag]', 'Since tag')
|
|
.action(changelog);
|
|
|
|
commander
|
|
.command('commit-lint')
|
|
.action(commitLint);
|
|
|
|
commander.parse(process.argv);
|