From aedafe1f4b7b39f492de1c2bb65a21188844e37e Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 13 May 2019 18:01:40 +0300 Subject: [PATCH] docs(help) UserMenu: optional --- HELP.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HELP.md b/HELP.md index 0b945d34..df07d591 100644 --- a/HELP.md +++ b/HELP.md @@ -479,8 +479,8 @@ module.exports = { 'D - Build Dev': async ({CloudCmd}) => { await CloudCmd.TerminalRun.show({ command: 'npm run build:client:dev', - autoClose: false, - closeMessage: 'Press any button to close Terminal', + autoClose: false, // optional + closeMessage: 'Press any button to close Terminal', // optional }); CloudCmd.refresh(); @@ -488,7 +488,7 @@ module.exports = { 'P - Build Prod': async ({CloudCmd}) => { await CloudCmd.TerminalRun.show({ command: 'npm run build:client', - autoClose: true, + autoClose: true, // optional }); CloudCmd.refresh();