jsoncombine plugin for gulp
First, install gulp-jsoncombine
as a dependency:
npm install --save-dev gulp-jsoncombine
Then, add it to your gulpfile.js
:
** This plugin will collect all the json files provided to it, parse them, put them in a dictionary where the keys of that dictionary are the filenames (sans the '.json' suffix) and pass that to a processor function. That function decides how that output should look in the resulting file. **
var jsoncombine = require("gulp-jsoncombine");
gulp.src("./src/*.json")
.pipe(jsoncombine("result.js",function(data, meta){...}))
.pipe(gulp.dest("./dist"));
Type: String
The output filename
Type: Function
The processor function will be called with two dictionaries holding the same set of keys. The keys are the filename sans the .json
suffix of a file in the gulp stream.
The first dictionary maps the filename to the string contents of the file. The second dictionary maps to a meta object containing the following keys:
cwd
The working directorybase
The base pathpath
The full path to the file
The function should return a new Buffer
that would be written to the output file.