gulp-json5-to-json
v0.2.1
Published
A gulp plugin to convert JSON5 to strict JSON.
Downloads
109
Readme
gulp-json5-to-json
Installation
$ npm install --save-dev gulp-json5-to-json
Usage
const gulp = require('gulp');
const json5 = require('gulp-json5-to-json');
gulp.task('default', () => {
return gulp.src('src/**/*.json5')
.pipe(json5({ beautify: true }))
.pipe(gulp.dest('./build'));
});
Options
beautify
- Causes the resulting file to be pretty-printed.