14

我正在尝试编写一个 grunt 任务,该任务将遍历一组输入文件并在每个文件上运行转换。让我们假设输入文件由给出,*.in并且任务将为每个文件创建一个.out文件。

根据我的阅读,配置似乎应该是这样的

grunt.initConfig({
    my_task: {
        src: 'C:/temp/*.in',
        dest: 'C:/temp/output/*.out'
    }
});

并且任务注册应该是:

grunt.registerTask('my_task', 'iterate files', function() {
    //iterate files.
});

我不知道如何让 grunt 向我发送文件列表并遍历它们。

知道怎么做吗?

4

1 回答 1

19

这就是我结束做的事情并且解决了我的问题。对于任务配置,我执行了以下操作:

  grunt.initConfig({
    convert_po: {
      build: {
        src: 'C:/temp/Locale/*.po',
        dest: 'C:/temp/Locale/output/'
      }
    }
  });

这是任务的实现:

  grunt.registerMultiTask('convert_po', 'Convert PO files to JSON format', function() {
var po = require('node-po');
var path = require('path');

grunt.log.write('Loaded dependencies...').ok();

//make grunt know this task is async.
var done = this.async();

var i =0;
this.files.forEach(function(file) {
  grunt.log.writeln('Processing ' + file.src.length + ' files.');

  //file.src is the list of all matching file names.
  file.src.forEach(function(f){ 
    //this is an async function that loads a PO file
    po.load(f, function(_po){
      strings = {};
        for (var idx in _po.items){
            var item = _po.items[idx];
            strings[item.msgid] = item.msgstr.length == 1 ? item.msgstr[0] : item.msgstr;
        }
        var destFile = file.dest + path.basename(f, '.po') + '.json';
        grunt.log.writeln('Now saving file:' + destFile);
        fs.writeFileSync(destFile, JSON.stringify(strings, null, 4));

        //if we processed all files notify grunt that we are done.
        if( i >= file.src.length) done(true);
    });
  });
});
});
于 2013-09-23T09:09:59.930 回答