Skip to content

Commit

Permalink
fix: check for files via processor.has()
Browse files Browse the repository at this point in the history
Means that files w/ incorrect cases are supported correctly, and supersedes #533
  • Loading branch information
tivac committed Jan 9, 2019
1 parent 2b8fec6 commit b5a539b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rollup/rollup.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module.exports = (opts) => {
},

watchChange(file) {
if(!processor.files[file]) {
if(!processor.has(file)) {
return;
}

Expand Down

0 comments on commit b5a539b

Please sign in to comment.