Skip to content

Commit

Permalink
chore: ignore any into scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Bibazavr <lebedevki@lad24.ru>
  • Loading branch information
Bibazavr committed Jan 26, 2024
1 parent 15112af commit a814e12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/release/publishPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ export async function publishPackage({
execSync(`yarn --cwd ${path} build`);
execSync(`npm publish ${path} --tag ${tag}`);
logger.info(`Package ${name} was published`);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
logger.error(`Failed to publish package ${name}`);
process.stdout.write(`${error.message}\n`);
process.stdout.write(`${error?.message}\n`);
process.exit(1);
}
}

0 comments on commit a814e12

Please sign in to comment.