From 6033c086e48d11aa894a302860dcaeee4b584275 Mon Sep 17 00:00:00 2001 From: ankushduacodes <61025943+ankushduacodes@users.noreply.github.com> Date: Fri, 18 Dec 2020 15:24:26 +0530 Subject: [PATCH] Updated the description for --watch-ignored arg --- src/program.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/program.js b/src/program.js index a032fcbbd5..2de4d445d8 100644 --- a/src/program.js +++ b/src/program.js @@ -622,10 +622,11 @@ Example: $0 --help run. type: 'string', }, 'watch-ignored': { - describe: 'Extension will not reload if anything in this' + - ' directory or file/s changes. This is useful when there' + - ' are a lots of files which are unnecessary to watch' + - ' for example. node_modules folder', + describe: 'Paths and globs patterns that should not be ' + + 'watched for changes. This is useful if you want ' + + 'to explicitly prevent web-ext from watching part ' + + 'of the extension directory tree, ' + + 'e.g. the node_modules folder.', demandOption: false, type: 'array', },