Browse Source

chore: `gulp i18n` generates .json files

Gerald 6 years ago
parent
commit
ed4f002fc5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

@@ -139,5 +139,5 @@ const pack = gulp.parallel(manifest, copyFiles, copyI18n);
 exports.clean = clean;
 exports.dev = gulp.series(gulp.parallel(pack, jsDev), watch);
 exports.build = gulp.series(clean, gulp.parallel(pack, jsProd));
-exports.i18n = updateI18n;
+exports.i18n = gulp.parallel(updateI18n, copyI18n);
 exports.check = checkI18n;