Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-json-editor

gulp-community114.4kMIT2.6.0TypeScript support: definitely-typed

A gulp plugin to edit JSON objects

gulpplugin, gulp, json

readme

gulp-json-editor

npm version Automated tests

gulp-json-editor is a gulp plugin to edit JSON objects.

Usage

var jeditor = require("gulp-json-editor");

/*
  edit JSON object by merging with user specific object
*/
gulp.src("./manifest.json")
  .pipe(jeditor({
    'version': '1.2.3'
  }))
  .pipe(gulp.dest("./dest"));

/*
  edit JSON object by using user specific function
*/
gulp.src("./manifest.json")
  .pipe(jeditor(function(json) {
    json.version = "1.2.3";
    return json; // must return JSON object.
  }))
  .pipe(gulp.dest("./dest"));

/*
  specify [js-beautify](https://github.com/beautify-web/js-beautify) option
*/
gulp.src("./manifest.json")
  .pipe(jeditor({
    'version': '1.2.3'
  },
  // the second argument is passed to js-beautify as its option
  {
    'indent_char': '\t',
    'indent_size': 1
  }))
  .pipe(gulp.dest("./dest"));

/*
  specify [deepmerge](https://github.com/TehShrike/deepmerge) option
*/
gulp.src("./manifest.json")
  .pipe(jeditor({ 
    "authors": ["tomcat"] 
  },
  // the second argument is passed to js-beautify as its option
  {},
  // the third argument is passed to deepmerge options, eg, arrayMerge options
  { 
    arrayMerge: function (dist,source,options) {return source;} 
  }))
  .pipe(gulp.dest("./dest"));

Note

In case of such above situation, all of comment and whitespace in source file is NOT kept in destination file.

Disable beautification

gulp.src("./manifest.json")
  .pipe(jeditor({
    'version': '1.2.3'
  },
  {
    beautify: false
  }))
  .pipe(gulp.dest("./dest"));

API

jeditor(editorObject, [jsBeautifyOptions], [deepmergeOptions])

editorObject

Type: JSON object

JSON object to merge with.

jsBeautifyOptions

Type: object

This object is passed to js-beautify as its option.

deepmergeOptions

Type: object

This object is passed to deepmerge as its option.

jeditor(editorFunction, [jsBeautifyOptions], [deepmergeOptions])

editorFunction

Type: function

The editorFunction must have the following signature: function (json) {}, and must return JSON object or PromiseLike object with JSON object as value.

jsBeautifyOptions

Type: object

This object is passed to js-beautify as its option.

deepmergeOptions

Type: object

This object is passed to deepmerge as its option.

License

Copyright (c) 2023 gulp-community

Licensed under the MIT license.

changelog

2.6.0

Added

  • Support editor to return PromiseLike object (#48)

Changed

  • Test on Node.js 18 and upwards
  • Update dependencies

2.5.7

Changed

  • Update dependencies

2.5.6

Changed

  • Update dependencies

2.5.5

Changed

  • Update dependencies

2.5.4

Changed

  • Update dependencies

2.5.3

Changed

  • Update dependencies

2.5.2

Changed

  • Update dependencies

2.5.1

Changed

  • Update dependencies

2.5.0

Added

  • Add ability to pass options to deepmerge (#25 by @buuug7)

Changed

  • Update dependencies

2.4.4

Changed

  • Update dependencies

2.4.3

Changed

  • Switch to eslint
  • Update dependencies

2.4.2

Changed

  • Update dependencies

2.4.1

Changed

  • Don't include .idea files in npm tarball

2.4.0

Fixed

Changed

  • Update dependencies

2.3.0

Added

  • New option 'beautify' (default: true) to disable beautification if necessary

2.2.2

Fixed

  • Replace deprecated gulp-util (#15)

Changed

  • Update dependencies

2.2.1

Changed

  • Keep indentation if no option is specified