Ulflander / gulp-po-json

Utility to convert PO files to JSON files with Gulp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-po-json

Build Status

Information

Packagegulp-po-json
Description Utility to convert PO files to JSON files with Gulp
Node Version >= 0.10

Usage

var gulp = require('gulp'),
    pojson = require('gulp-po-json');

gulp.task('i18n', function() {
    return gulp 
        .src('locales/*.po')
        .pipe(pojson())
        .dest('dist/locales');
});

About

Utility to convert PO files to JSON files with Gulp

License:MIT License


Languages

Language:JavaScript 100.0%