nit: bold integration name

This commit is contained in:
bholmesdev 2022-07-08 10:44:28 -04:00
parent 4c6995a195
commit 54808020d1

View file

@ -550,7 +550,7 @@ export async function validateIntegrations(integrations: string[]): Promise<Inte
integrations.map(async (integration): Promise<IntegrationInfo> => {
const parsed = parseIntegrationName(integration);
if (!parsed) {
throw new Error(`${integration} does not appear to be a valid package name!`);
throw new Error(`${bold(integration)} does not appear to be a valid package name!`);
}
let { scope, name, tag } = parsed;