1.0.0 • Published 6 years ago

gulp-po2json v1.0.0

Weekly downloads
291
License
MIT
Repository
github
Last release
6 years ago

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/'));
});