Strip specific pragmas from your file's docblock in Gulp
npm install gulp-strip-docblock-pragmasjest-docblock to parsed the docblock and strip all pragmas (default) or those specified in options.pragmas: Array of pragmas to specifically strip. If not specified, defaults to stripping all pragmas from the docblock
Strip all pragmas
```
const stripPragmas = require('gulp-strip-docblock-pragmas');
gulp.pipe(stripPragms);
Strip select pragmas
```
const stripPragmas = require('gulp-strip-docblock-pragmas');
gulp
.pipe(stripPragmas({pragmas: ['foo', 'bar']}));