michaelwayman / node-sass-chokidar

A thin wrapper around node-sass to replicate the --watch using chokidar instead of Gaze
MIT License
291 stars 34 forks source link

Not picking up _file.scss #25

Closed ezweave closed 7 years ago

ezweave commented 7 years ago

If I follow the 7-1 pattern (wherein _ prepends scss files), css is not compiled. If I rename the files and drop the underscore, it works fine.

ezweave commented 7 years ago

This seems intentional (from line 283), am I doing something wrong?

files.forEach(function(file) { if (path.basename(file)[0] !== '_') { renderFile(file, options, emitter); } });