watch-filter.js 176 B

123456
  1. var path = require('path');
  2. module.exports = function(f, stat) {
  3. var parts = f.split(path.sep);
  4. return parts.indexOf('src') !== -1 || parts.indexOf('style') !== -1;
  5. }