UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

51 lines 1.65 kB
"use strict"; /* * Copyright © 2019 Atomist, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.StringCapturingProgressLog = void 0; const strip_ansi_1 = require("strip-ansi"); const format_1 = require("./format"); /** * ProgressLog implementation that captures the log into a string and makes it * available from the log field */ class StringCapturingProgressLog { constructor() { this.name = "StringCapturingProgressLog"; this.log = ""; this.stripAnsi = false; } close() { return Promise.resolve(); } flush() { return Promise.resolve(); } write(msg, ...args) { const m = this.stripAnsi ? strip_ansi_1.default(msg) : msg; if (this.log) { this.log += format_1.format(m, ...args); } else { this.log = format_1.format(m, ...args); } } isAvailable() { return Promise.resolve(true); } } exports.StringCapturingProgressLog = StringCapturingProgressLog; //# sourceMappingURL=StringCapturingProgressLog.js.map