Skip to content

Commit

Permalink
Merge pull request #18 from peter-mouland/feature/bower_components
Browse files Browse the repository at this point in the history
add `bower_components` to the list of `defaultIgnore` directories
  • Loading branch information
devongovett committed Mar 9, 2015
2 parents a2e9f90 + ce20c8b commit 3864df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -2,7 +2,7 @@ var istanbul = require('istanbul');
var through = require('through');
var minimatch = require('minimatch');

var defaultIgnore = ['**/node_modules/**', '**/test/**', '**/tests/**', '**/*.json'];
var defaultIgnore = ['**/node_modules/**', '**/bower_components/**', '**/test/**', '**/tests/**', '**/*.json'];

module.exports = function(options, extraOptions) {
options = options || {};
Expand Down

0 comments on commit 3864df1

Please sign in to comment.