From 395e91a655205fdcd29200691db52c7025ff77c8 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Fri, 28 Aug 2026 22:52:33 -0700 Subject: [PATCH 1/2] chore: use listr2 figure utilities --- lib/figures.js | 4 ++-- package-lock.json | 18 ------------------ package.json | 1 - 3 files changed, 2 insertions(+), 21 deletions(-) diff --git a/lib/figures.js b/lib/figures.js index abca9f23..c299e08a 100644 --- a/lib/figures.js +++ b/lib/figures.js @@ -1,7 +1,7 @@ import chalk from 'chalk'; -import figures from 'figures'; +import { figures } from 'listr2'; export const warning = chalk.yellow(figures.warning); export const error = chalk.red(figures.cross); -export const info = chalk.blue(figures.info); +export const info = chalk.blue(figures.pointer); export const success = chalk.green(figures.tick); diff --git a/package-lock.json b/package-lock.json index d6467635..535ff31e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,6 @@ "changelog-maker", "cheerio", "core-validate-commit", - "figures", "ghauth", "git-secure-tag", "js-yaml", @@ -39,7 +38,6 @@ "changelog-maker": "^4.4.1", "cheerio": "^1.0.0", "core-validate-commit": "^6.0.0", - "figures": "^6.1.0", "ghauth": "^7.0.1", "git-secure-tag": "^2.3.1", "js-yaml": "^5.2.1", @@ -3673,22 +3671,6 @@ } } }, - "node_modules/figures": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", - "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", - "inBundle": true, - "license": "MIT", - "dependencies": { - "is-unicode-supported": "^2.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/file-entry-cache": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", diff --git a/package.json b/package.json index 5451924a..10657015 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,6 @@ "changelog-maker": "^4.4.1", "cheerio": "^1.0.0", "core-validate-commit": "^6.0.0", - "figures": "^6.1.0", "ghauth": "^7.0.1", "git-secure-tag": "^2.3.1", "js-yaml": "^5.2.1", From 9d65b2ba63784c58652edee400989deb95c66097 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 2 Sep 2026 12:35:39 -0700 Subject: [PATCH 2/2] fix: use figures.info from listr2@11.1.0 --- lib/figures.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/figures.js b/lib/figures.js index c299e08a..f55ee0d8 100644 --- a/lib/figures.js +++ b/lib/figures.js @@ -3,5 +3,5 @@ import { figures } from 'listr2'; export const warning = chalk.yellow(figures.warning); export const error = chalk.red(figures.cross); -export const info = chalk.blue(figures.pointer); +export const info = chalk.blue(figures.info); export const success = chalk.green(figures.tick);