Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 789 Bytes

README.md

File metadata and controls

49 lines (39 loc) · 789 Bytes

gulp-json-concat-with-path

Concatenate json files to specified file containing a key with a path to each json file. The key (path) is build with a POSIX separator.

Usage

npm install --save-dev gulp-json-concat-with-path
var jsonConcat = require('gulp-json-concat-with-path');

gulp.src('*.json')
	.pipe(jsonConcat('output.json')
	.pipe(gulp.dest('outputFolder'));

Example

/app/component1/data.json

{
	"header": "component1"
}

/app/component2/data.json

{
	"header": "component2"
}

output

{
	"app/component1/data.json": {
		"header": "component1"
	},
	"app/component2/data.json": {
		"header": "component1"
	}
}

License

MIT License