devongovett / browserify-istanbul

A browserify transform for the istanbul code coverage tool
50 stars 32 forks source link

Accept an extraOptions parameter #1

Closed thaiat closed 10 years ago

thaiat commented 10 years ago

With this simple change we can now use the following configuration in package.json or karma.config:

browserify: {
     transform: [
             [{
                 ignore: ['**/bower_components/**', '**/*/*test.js']
             }, 'browserify-istanbul']
    ]
}