0.0.4 • Published 2 years ago

gulp-strip-docblock-pragmas v0.0.4

Weekly downloads
531
License
MIT
Repository
github
Last release
2 years ago

gulp-strip-docblock-pragmas

Rewrites modules dependencies

Implementation

Uses jest-docblock to parsed the docblock and strip all pragmas (default) or those specified in options.

Options

pragmas: Array of pragmas to specifically strip. If not specified, defaults to stripping all pragmas from the docblock

Usage

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']}));
0.0.4

2 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago