From ad7153750e3e1b28d31ffc171067e9365eb12f4e 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 a1a8e6920..feb032400 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 d78c7aeb8..0d1991a1a 100644 --- a/package.json +++ b/package.json @@ -85,10 +85,5 @@ "proxyquire": "^2.0.1", "sinon": "^7.0.0", "typescript": "~3.2.0" - }, - "nyc": { - "exclude": [ - "build/test" - ] } }