From 85a192f717e0e8b056b26e48352275daa0806389 Mon Sep 17 00:00:00 2001 From: Justin Beckwith Date: Wed, 5 Dec 2018 15:26:00 -0800 Subject: [PATCH] chore: nyc ignore build/test by default --- .nycrc | 3 ++- package.json | 5 ----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.nycrc b/.nycrc index a1a8e692..feb03240 100644 --- a/.nycrc +++ b/.nycrc @@ -3,7 +3,8 @@ "exclude": [ "src/*{/*,/**/*}.js", "src/*/v*/*.js", - "test/**/*.js" + "test/**/*.js", + "build/test" ], "watermarks": { "branches": [ diff --git a/package.json b/package.json index fbcc2b0a..1669ff08 100644 --- a/package.json +++ b/package.json @@ -108,10 +108,5 @@ "proxyquire": "^2.1.0", "typescript": "~3.2.0", "uuid": "^3.3.2" - }, - "nyc": { - "exclude": [ - "build/test" - ] } }