gulp-flatraml
v0.1.1
Published
Use flat-raml in a gulpy fashion.
Downloads
6
Readme
This plugin allows combining a raml file and its dependencies into a unique file within the gulp pipeline mechanism.
Install with npm
npm install --save-dev gulp-flatramlAdd it in your gulpfile
const flat = require('gulp-flatraml');
gulp.task('flatten', function() {
return gulp.src('*.raml')
.pipe(flat())
.pipe(gulp.dest('dist'));
});