Skip to content

Commit e365656

Browse files
committed
fix(watch): exclude build/**/*.spec.js from ava to avoid double execution
1 parent 633e5eb commit e365656

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

package.json

+7
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@
103103
"build/browser/**"
104104
]
105105
},
106+
"ava": {
107+
"source": [
108+
"test/**/*.js",
109+
"build/**/*.js",
110+
"!build/**/*.spec.js"
111+
]
112+
},
106113
"dependencies": {
107114
"tslib": "^1.6.0"
108115
}

0 commit comments

Comments
 (0)