gulp-json-editor
gulp-json-editor is a gulp plugin to edit JSON object.
Usage
var jeditor = require("gulp-json-editor");
gulp.src("./manifest.json")
.pipe(jeditor(function(json) {
json.version = "1.2.3";
return json;
}))
.pipe(gulp.dest("./dest"));
Note
In case of such situation, all of comment and white space in source file isn't kept in destination file.
API
jeditor(editorFunction)
editorFunction
The editorFunction
must have the following signature: function (json) {}
, and must return JSON object.
License
MIT License