我正在为grunt编写一个新插件,它正在使用一些问题来解决翻译中的一些问题。我使用grunt.registerMultiTask();
编写了插件,并使用grunt translate
调用了这些任务。但是在代码的某些部分,我提示解决翻译迁移问题。
代码是:
grunt.helper('prompt', {}, [
// Prompt for these values.
grunt.helper('prompt_for', 'name')
], function(err, props) {
// All done!
done();
});
我想知道为什么它会忽略命令行中的提示。它只是输出问题而不是等待答案。