2

我正在使用 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 请求配置参数。

有没有人有这方面的经验?

4

1 回答 1

2

我花了一点时间才弄清楚在对象中注释掉你的default选项config可以使它起作用。

demandOption如果设置为true那不应该有默认值,这确实是有道理的!但是,文档似乎没有说明任何内容(它只是默默地失败),请参阅有效的选项键

与该理论一致的是,您的第二个不需要的选项 ' host' 即使是 undefined 或 null 也能正常工作default: ""

于 2018-07-05T02:06:28.000 回答