UNPKG

@atomist/sdm-core

Version:

Atomist Software Delivery Machine - Implementation

49 lines (45 loc) 1.75 kB
/* * Copyright © 2018 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. */ import { BannerSection, Configuration, } from "@atomist/automation-client"; import { SoftwareDeliveryMachine } from "@atomist/sdm"; import chalk from "chalk"; import { isGitHubAction, isInLocalMode, } from "../machine/modes"; /** * Print some SDM details to the startup banner of the client * @param sdm */ export function sdmStartupMessage(sdm: SoftwareDeliveryMachine): (configuration: Configuration) => string | BannerSection { return () => ({ title: "SDM", body: `${sdm.name}${isInLocalMode() ? ` ${chalk.grey("started in")} ${chalk.green("local mode")}` : ( isGitHubAction() ? ` ${chalk.grey("started as")} ${chalk.green("GitHub action")}` : "")}`, }); } export function sdmExtensionPackStartupMessage(sdm: SoftwareDeliveryMachine): (configuration: Configuration) => string | BannerSection { return () => ({ title: sdm.extensionPacks.length > 1 ? "Extension Packs" : "Extension Pack", body: sdm.extensionPacks.map(ex => `${ex.name}:${ex.version} ${chalk.gray("by")} ${ex.vendor}`) .sort((e1, e2) => e1.localeCompare(e2)).join("\n"), }); }