From c388daff1ea1e55b9bbfdfef41e106077bc25b93 Mon Sep 17 00:00:00 2001 From: Kenneth Williams Date: Sat, 17 Sep 2016 11:30:19 -0700 Subject: [PATCH] chore: Remove 'coming soon' note for .nycrc file (#396) Support for a .nycrc config file has been added. --- lib/config-util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/config-util.js b/lib/config-util.js index f1e67522b..729c472d3 100644 --- a/lib/config-util.js +++ b/lib/config-util.js @@ -8,9 +8,9 @@ var Yargs = require('yargs/yargs') var Config = {} // load config from a cascade of sources: -// * command line arguments. -// * package.json. -// * .nycrc (coming soon) +// * command line arguments +// * package.json +// * .nycrc Config.loadConfig = function (argv, cwd) { cwd = cwd || process.env.NYC_CWD || process.cwd() var pkgPath = findUp.sync('package.json', {cwd: cwd})