A post processor to extract a module from gulp-typedoc json output.
npm install gulp-typedoc-extractorgulp-typedoc-extractor as a development dependency:
shell
npm install --save-dev gulp-typedoc-extractor
`
Then, add it to your gulpfile.js:
$3
`javascript
var extractModule = require('gulp-typedoc-extractor');
gulp.task('extract-module', function(){
gulp.src(['dest/full-api.json'])
.pipe(extractModule('aurelia-framework'))
.pipe(gulp.dest('dest/api.json'));
});
`
API
gulp-typedoc-extractor is called with a module name.
$3
#### string
Type: String`