我正在使用 yargs 在 gulp 命令中传递参数。我在检查参数的有效性以及如果标志存在或不存在会发生什么时遇到问题。
更具体地说,这是我的gulpfile.js
:
'use strict';
var argv = require('yargs').options({
'config': {
alias: 'c',
demandOption: true,
default: 'default',
describe: 'Choose a configuration file name',
type: 'string'
},
'host': {
alias: 'h',
demandOption: false,
default: '',
describe: 'Replace the host starting with http://',
type: 'string'
}
}).argv;
gulp.task('config', function(){
// If argument -c is passed copy config file in path
// configs/Config_{{argv.c}}.js into Config.js
gulp.src('./app/jsx/constants/Config_' + argv.c + '.js')
.pipe(rename({ basename: 'Config'}))
.pipe(gulp.dest('./app/jsx/constants'))
})
如果我gulp config -c something
,一切都按预期工作。
我想要的是:如果命令中没有提供,让 CLI 请求配置参数。
有没有人有这方面的经验?