You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/antd-tools/cli/run.js

27 lines
411 B

7 years ago
#!/usr/bin/env node
'use strict'
require('colorful').colorful()
const gulp = require('gulp')
const program = require('commander')
program.on('--help', () => {
console.log(' Usage:'.to.bold.blue.color)
console.log()
})
program.parse(process.argv)
const task = program.args[0]
if (!task) {
program.help()
} else {
console.log('antd-tools run', task)
require('../gulpfile')
gulp.start(task)
}