navy
Version:
Quick and powerful development environments using Docker and Docker Compose
20 lines (15 loc) • 494 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.reconfigureAllNavies = reconfigureAllNavies;
var _ = require("../../");
var _driverLogging = require("../../driver-logging");
async function reconfigureAllNavies() {
const navies = await (0, _.getLaunchedNavies)();
for (const navy of navies) {
(0, _driverLogging.startDriverLogging)('Reconfiguring ' + navy.name);
await navy.reconfigure();
(0, _driverLogging.stopDriverLogging)();
}
}