From 3c7b3ef6c8792558666676c0b8db5e757ba00ec8 Mon Sep 17 00:00:00 2001 From: isaacs Date: Sat, 5 Mar 2022 12:58:03 -0800 Subject: [PATCH] document coveralls removal in the cli help output --- bin/jack.js | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/bin/jack.js b/bin/jack.js index 053396cc3..6f7acaa88 100644 --- a/bin/jack.js +++ b/bin/jack.js @@ -359,10 +359,13 @@ Much more documentation available at: https://www.node-tap.org/ description: `Capture coverage information using 'nyc' This is enabled by default. - If a COVERALLS_REPO_TOKEN environment - variable is set, and the 'coveralls' - module is installed, then coverage is - sent to the coveralls.io service.`, + If a COVERALLS_REPO_TOKEN environment variable is set, + and the 'coveralls' module is installed, then coverage + is sent to the coveralls.io service. + + Note that tap does not automatically install coveralls, + it must already be present in your project to use this + feature.`, negate: { short: 'no-cov', description: `Do not capture coverage information. @@ -710,7 +713,8 @@ Much more documentation available at: https://www.node-tap.org/ COVERALLS_REPO_TOKEN: env({ description: `Set to a Coveralls token to automatically - send coverage information to https://coveralls.io`, + send coverage information to https://coveralls.io, + if the 'coveralls' module is installed in the project.`, implies: { coverage: true },