gulp-merge-with-master
v0.0.1
Published
A gulp plugin to merge JSON files with master file
Readme
gulp-merge-with-master 0.0.1
A gulp plugin to merge JSON files with master file
Getting Started
npm install gulp-merge-with-master --save-devOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
var mergeWithMaser = require('gulp-merge-with-master');Usage
gulp.src('./src/**/*.json')
.pipe(mergeWithMaser({master:'./master.json'})
.pipe(gulp.dest('/dest/')))API
mergeWithMaser([options])
options.master
Type: string
Default: ``
Path for the master JSON file
License
MIT © Yaser Amin
inspired by https://www.npmjs.com/package/gulp-copy
