chore(cloudcmd) lint

This commit is contained in:
coderaiser 2020-12-03 18:27:59 +02:00
parent 1e853b040d
commit 4c7f8cc6b6
10 changed files with 16 additions and 37 deletions

View file

@ -28,10 +28,10 @@ module.exports = {
await run(TerminalRun, 'npm run build:client:dev');
CloudCmd.refresh();
},
'P - Build Prod': async ({CloudCmd}) => {
'P - Build Prod': ({CloudCmd}) => {
const {TerminalRun} = CloudCmd;
run(TerminalRun, 'npm run build:client'),
run(TerminalRun, 'npm run build:client');
CloudCmd.refresh();
},
};