0.0.8 • Published 8 years ago

gulp-unite-json v0.0.8

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

gulp-unite-json

npm version

unite-json plugin for gulp

This will unite json files. If key is duplicated in the json united, throw error.

Usage

First, install gulp-unite-json as a development dependency:

npm install --save-dev gulp-unite-json

After that, add it to your gulpfile.js:

Code Example

var gulp_unite_json = require('gulp-unite-json');

gulp.src("./src/*.json")
	.pipe(gulp_unite_json("result.json")
	.pipe(gulp.dest("./dest"));

./src/test1.json

{"key1":"value1"}

./src/test2.json

{"key2":"value2"}

./dest/result.json

{"key1":"value1","key2":"value2"}

License

MIT License

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.1

9 years ago