gulp-po2json
v1.0.0
Published
Gulp plugin to convert gettext .po files to JSON
Downloads
1,268
Readme
gulp-po2json
Convert .po files to JSON using po2json
Install
Install with npm
npm install --save-dev gulp-po2json
Examples
const gulp = require('gulp');
const po2json = require('gulp-po2json');
gulp.task('po2json', function () {
return gulp.src(['po/**/*.po'])
.pipe(po2json())
.pipe(gulp.dest('dist/translations/'));
});