mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
docs(help) UserMenu: optional
This commit is contained in:
parent
e7f8769f61
commit
aedafe1f4b
1 changed files with 3 additions and 3 deletions
6
HELP.md
6
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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue