From ad70a90b1f6867bd216c9d1ae3ba625d422ca339 Mon Sep 17 00:00:00 2001 From: Tanoshii <79271690+Ta-noshii@users.noreply.github.com> Date: Thu, 4 May 2023 06:50:09 +0200 Subject: [PATCH] Update commit.ts (#154) * fixed type --- package-lock.json | 4 ++-- src/commands/commit.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index e221cda..ef3d07e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "opencommit", - "version": "2.0.0", + "version": "2.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "opencommit", - "version": "2.0.0", + "version": "2.0.3", "license": "MIT", "dependencies": { "@clack/prompts": "^0.6.1", diff --git a/src/commands/commit.ts b/src/commands/commit.ts index 4ca9709..aa35194 100644 --- a/src/commands/commit.ts +++ b/src/commands/commit.ts @@ -73,7 +73,7 @@ ${chalk.grey('——————————————————')}` ...extraArgs ]); - outro(`${chalk.green('✔')} successfully committed`); + outro(`${chalk.green('✔')} Successfully committed`); outro(stdout); @@ -102,7 +102,7 @@ ${chalk.grey('——————————————————')}` ]); pushSpinner.stop( - `${chalk.green('✔')} successfully pushed all commits to ${remotes[0]}` + `${chalk.green('✔')} Successfully pushed all commits to ${remotes[0]}` ); if (stdout) outro(stdout); @@ -126,7 +126,7 @@ ${chalk.grey('——————————————————')}` pushSpinner.stop( `${chalk.green( '✔' - )} successfully pushed all commits to ${selectedRemote}` + )} Successfully pushed all commits to ${selectedRemote}` ); if (stdout) outro(stdout);