UNPKG

a2r

Version:
11 lines (10 loc) 384 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const colors_1 = require("./colors"); const docker_1 = require("./docker"); const onProcessExit = async (dockerName) => { (0, colors_1.log)(`On exit, stopping docker: ${dockerName}`); await (0, docker_1.stop)(dockerName); (0, colors_1.log)('Docker stopped'); }; exports.default = onProcessExit;