diff --git a/.madrun.js b/.madrun.js index bcac13a6..3b12a9a9 100644 --- a/.madrun.js +++ b/.madrun.js @@ -12,7 +12,7 @@ const dockerName = 'coderaiser/cloudcmd'; module.exports = { 'start': () => 'node bin/cloudcmd.js', - 'start:dev': () => `NODE_ENV=development ${run('start')}`, + 'start:dev': async () => `NODE_ENV=development ${await run('start')}`, 'build:start': () => run(['build:client', 'start']), 'build:start:dev': () => run(['build:client:dev', 'start:dev']), 'lint:all': () => run(['lint', 'lint:css', 'spell']), diff --git a/.putout.json b/.putout.json index 9fe0ba1f..8fdaaf23 100644 --- a/.putout.json +++ b/.putout.json @@ -6,7 +6,7 @@ "fontello.json" ], "match": { - "import.spec.js|console.js": { + "{import.spec.js,console.js}": { "remove-skip": "off" }, ".webpack": { @@ -15,14 +15,14 @@ "server": { "remove-process-exit": "on" }, - "server/(server|exit).js": { + "server/{server,exit}.js": { "remove-process-exit": "off", "remove-console": "off" }, - "server/(terminal|distribute/log).js": { + "server/{terminal,distribute/log}.js": { "remove-console": "off" }, - "client/(client|cloudcmd|load-module).js": { + "client/{client,cloudcmd,load-module}.js": { "remove-console": "off" }, "client/modules/config/index.js": { diff --git a/package.json b/package.json index e70d5194..844543e2 100644 --- a/package.json +++ b/package.json @@ -147,7 +147,7 @@ "package-json": "^6.0.0", "ponse": "^5.0.0", "pullout": "^4.0.0", - "putout": "^11.0.2", + "putout": "^12.0.0", "rendy": "^3.0.0", "restafary": "^8.0.0", "restbox": "^2.0.0",