docs(help) UserMenu: optional

This commit is contained in:
coderaiser 2019-05-13 18:01:40 +03:00
parent e7f8769f61
commit aedafe1f4b

View file

@ -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();