Package Exports
- gulp-json-editor
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-json-editor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-json-editor
gulp-json-editor is a gulp plugin to edit JSON object.
Usage
var json = require("gulp-json-editor");
gulp.src("./manifest.json")
.pipe(json(function(obj) {
obj.version = "1.2.3";
return obj;
}))
.pipe(gulp.dest("./dist"));
API
json(editorFunction)
editorFunction
The editorFunction
must have the following signature: function (obj) {}
, and must return JSON object.