Skip to content

v0.6.0

Choose a tag to compare

@SBoudrias SBoudrias released this 01 Feb 02:23
· 65 commits to main since this release

Add option to define a custom Instrumenter so you can instrument es6, jsx or any other language features.

var isparta = require('isparta');
var istanbul = require('gulp-istanbul');

gulp.src('lib/**.js')
  .pipe(istanbul({
    instrumenter: isparta.Instrumenter
  }));