Convert all poedit file (only active string) into a new json file with the same name.
Perfect for Angular2 translate.
npm install gulp-poedit-to-json --save-dev
path: '/path/to/poedit/folder'
var gulp = require('gulp'),
poeditToJson = require('gulp-poedit-to-json');
gulp.task('default',['poeditToJson']);
gulp.task('poeditToJson', function(){
return poeditToJson({ path: '/path/to/poedit/folder'});
});