1.0.1 • Published 7 years ago
gulp-json-fmt v1.0.1
gulp-json-fmt
Gulp.js plugin wrapping the json-fmt module.
Installation
You'll probably use this plugin together with gulp.js as build tool/task runner:
npm install --save-dev gulp-json-fmtUsage
This is a pretty basic usage, taking JSON files from a directory and writing them in another one after the transformation:
var jsonFmt = require("gulp-json-fmt");
gulp.src("./data/*.json")
.pipe(jsonFmt())
.pipe(gulp.dest("./data/minified"));jsonFmt() can accept an object as the argument containing the options for the JSONFormatter class. In addition, jsonFmt.MINI and jsonFmt.PRETTY are references to JSONFormatter.MINI and JSONFormatter.PRETTY respectively (see json-fmt's page for more informations):
gulp.src("./data/*.json")
.pipe(jsonFmt({ spacedArray: true, spacedObject: true }))
gulp.src("./data/*.json")
.pipe(jsonFmt(jsonFmt.PRETTY))License
MIT. See LICENSE for details.