youmna-git-glance 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +24 -0
  2. package/index.js +1 -0
  3. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # 🚀 Git Glance
2
+
3
+ A lightweight, beautiful CLI dashboard to get an instant overview of your Git repository status. Built with Node.js.
4
+
5
+ [![npm version](https://img.shields.io/npm/v/youmna-git-glance.svg)](https://www.npmjs.com/package/youmna-git-glance)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+
8
+ ## ✨ Features
9
+ - 📊 **Instant Summary:** View current branch and remote URLs.
10
+ - 🕒 **Latest Commit:** See the most recent commit message and author.
11
+ - 📂 **File Tracking:** Instantly see how many files have been modified.
12
+ - 🎨 **Beautiful UI:** Clean, color-coded dashboard output.
13
+
14
+ ## 📦 Installation
15
+ Install the tool globally using npm:
16
+
17
+ ```bash
18
+ npm install -g youmna-git-glance
19
+ ``````
20
+
21
+ 🚀 Usage
22
+ ```bash
23
+ git-glance
24
+ ```
package/index.js CHANGED
@@ -23,6 +23,7 @@ async function showGitStats() {
23
23
 
24
24
  spinner.stop();
25
25
 
26
+
26
27
  const stats = `
27
28
  ${chalk.cyan.bold('Branch:')} ${chalk.white(status.current)}
28
29
  ${chalk.green.bold('Latest:')} ${chalk.white(log.latest.message)}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "youmna-git-glance",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "git-glance": "./index.js"