Fix Metamigo build error, CI updates

This commit is contained in:
Darren Clarke 2023-06-20 10:46:24 +00:00 committed by GitHub
parent a1ffea4244
commit dcbc348338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 4 deletions

View file

@ -109,10 +109,9 @@ export const announce = async <T extends IMetamigoConfig>(
config: T
): Promise<void> =>
new Promise((resolve, reject) => {
// @ts-expect-error figlet doesn't have types
figlet.text(
config.meta.name,
{ font: config.meta.figletFont },
{ font: config.meta.figletFont as any },
(err, text) => {
if (err) reject(err);
console.log(`${text}`);