Gulp 大口添加管道以转换为乙烯基对象

yhived7q  于 2022-12-08  发布在  Gulp
关注(0)|答案(1)|浏览(184)

我已经升级到gulp 4.0.2版本我需要更新其中一个任务

const debug = require('gulp-debug');
const i18nextParser = require('i18next-parser');

function myTask() {
  return gulp
    .src(['./js/**/*.js', './js/**/*.jsx'])
    .pipe(
      i18nextParser({
        locales: ['en', 'de'],
        functions: ['translate'],
        output: '/opt/locales/'
      })
    )
    .pipe(debug())
    .pipe(gulp.dest('/opt/locales/'));
});

我希望将这些文件转换为乙烯基对象:

[17:04:32] gulp-debug: opt/locales/de/translation.json
[17:04:32] gulp-debug: opt/locales/de/translation_old.json
[17:04:32] gulp-debug: opt/locales/en/translation.json
[17:04:32] gulp-debug: opt/locales/en/translation_old.json

否则我就和错误

Error: Received a non-Vinyl object in `dest()`

是否有一个函数,我可以管道,以使该任务正常工作?
i18next-parser版本为0.7.0升级到最新3.6.0版本根本不会产生任何输出

4xrmg8kj

4xrmg8kj1#

因此,我通过使用gulp-map添加额外的步骤来解决此问题

const map = require('gulp-map');
const Vinyl = require('vinyl');

  return gulp
    .src(['./js/*.js', './js/*.jsx'])
    .pipe(
      i18nextParser({
        locales: ['en', 'de'],
        functions: ['translate'],

        output: JSON_DIR
      })
    )
    .pipe(map(function(file) {
      // Explicitly convert to Vinyl object otherwise `gulp.dest()` will fail
      return new Vinyl(file);
    }))
    .pipe(gulp.dest(JSON_DIR));

相关问题