Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.
/ gulp-concat-jsons Public archive

Combine a list of json file in current stream to one JSON file

License

Notifications You must be signed in to change notification settings

totango/gulp-concat-jsons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-concat-jsons

Combine a list of json file in current stream to one JSON file.

Add it to your gulp file:

gulp
  .src(['foo.json', 'bar.json'])
  .pipe(require('gulp-concat-jsons')('merged.json'))
  .pipe(gulp.dest('out'))

Outputs out/merged.json:

[
  {...} // "foo.json content",
  {...} // "bar.json content"
]

Installation

$ npm install gulp-concat-jsons

About

Combine a list of json file in current stream to one JSON file

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published