gulp-poedit-to-json
v1.0.2
Published
Gulp task for convert poedit file to json
Downloads
8
Maintainers
Readme
gulp-poedit-to-json
Convert all poedit file (only active string) into a new json file using the same name. Perfect for Angular2 translate.
Installation
npm install gulp-poedit-to-json --save-dev
Params
path: '/path/to/poedit/folder'
Example
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'});
});