From c46dc1828c826c7025017314fdf2fdce70a58772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jovan=20Kruni=C4=87?= Date: Mon, 28 Jan 2019 11:17:27 +0100 Subject: [PATCH] fix: exclude CLI file in nyc configuration Closes #5 --- src/configuration.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/configuration.ts b/src/configuration.ts index ad141299..485e532e 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 StApps + * Copyright (C) 2018, 2019 StApps * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation, version 3. @@ -34,6 +34,7 @@ export const NYC_CONFIGURATION = { 'check-coverage': true, exclude: [ 'src/test/**/*.spec.ts', + 'src/cli.ts', ], extension: [ '.ts',