mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-29 10:40:23 +00:00
coverage: ignore node_modules
This commit is contained in:
parent
86fbe1c2ef
commit
fbdacc0e92
1 changed files with 5 additions and 1 deletions
|
|
@ -68,7 +68,11 @@ const conf = {
|
|||
rollupPreprocessor: {
|
||||
plugins: [
|
||||
istanbul({
|
||||
exclude: ['js/tests/unit/**/*.spec.js', 'js/tests/helpers/**/*.js']
|
||||
exclude: [
|
||||
'node_modules/**',
|
||||
'js/tests/unit/**/*.spec.js',
|
||||
'js/tests/helpers/**/*.js'
|
||||
]
|
||||
}),
|
||||
babel({
|
||||
// Only transpile our source code
|
||||
|
|
|
|||
Loading…
Reference in a new issue