Some libraries that we use have test coverage folders that are not included (and not needed) when installing them. This library's regular code is found in its lib folder (included) and the test coverage tracking version of the code is found in its lib-cov folder (not included).
These libraries are found containing code like this:
Some libraries that we use have test coverage folders that are not included (and not needed) when installing them. This library's regular code is found in its
lib
folder (included) and the test coverage tracking version of the code is found in itslib-cov
folder (not included).These libraries are found containing code like this:
My
bundle
task fails because aurelia-bundler tries to load thelib-cov
folder which does not exist:How about supporting ignore-patterns in the config dictionary so that these types of folders can be skipped?
I added
"excludes": ["lib-cov/**/*"],
which does not work.