0.0.7 • Published 8 years ago

gulp-pseudolocalize v0.0.7

Weekly downloads
21
License
-
Repository
-
Last release
8 years ago

gulp-pseudolocalize

The grunt-pseudolocalize code used as a template to create this gulp plugin.

Installation

$ npm install gulp-pseudolocalize

The following will read the resource.json file and output a new file in the same directory called pseudo.json.

Please see grunt-pseudolocalize for options to pass into the pseudo function.

var pseudo = require('gulp-pseudolocalize');
var dest = require('gulp-dest');

gulp.task('pseudo', function () {
    return gulp
        .src('./path/to/resource.json')
        .pipe(pseudo({ pretty: true }))
        .pipe(dest('./resources/:name.json', { name: 'pseudo' }))
        .pipe(gulp.dest('./path/to/'));
});

This read me will be updated with more information soon.

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago