bensu / doo

doo is a library and lein plugin to run cljs.test on different js environments.
Eclipse Public License 1.0
324 stars 63 forks source link

Avoid unnecessary warnings about matchers #153

Closed miikka closed 6 years ago

miikka commented 6 years ago

Having overlapping file patterns causes warnings like this:

WARN [watcher]: All files matched by "/Users/miikka/code/doo/example/out/**/*.js" were excluded or matched by prior matchers.
WARN [watcher]: All files matched by "/Users/miikka/code/doo/example/out/*.js" were excluded or matched by prior matchers.

The warnings are harmless, but it's not immediately obvious. This patch removes the unnecessary patterns to get rid of the warnings.

bensu commented 6 years ago

Looks good to me!