Skip to content

Commit fc8511e

Browse files
committed
remove package prefix
1 parent e5a0e21 commit fc8511e

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<div align="center">
44

5-
[![NPM Version](https://img.shields.io/npm/v/@253eosam/commit-from-branch?style=flat-square&color=blue)](https://www.npmjs.com/package/@253eosam/commit-from-branch)
6-
[![NPM Downloads](https://img.shields.io/npm/dm/@253eosam/commit-from-branch?style=flat-square&color=green)](https://www.npmjs.com/package/@253eosam/commit-from-branch)
5+
[![NPM Version](https://img.shields.io/npm/v/commit-from-branch?style=flat-square&color=blue)](https://www.npmjs.com/package/commit-from-branch)
6+
[![NPM Downloads](https://img.shields.io/npm/dm/commit-from-branch?style=flat-square&color=green)](https://www.npmjs.com/package/commit-from-branch)
77
[![GitHub Release](https://img.shields.io/github/v/release/253eosam/commit-from-branch?style=flat-square&color=purple)](https://github.com/253eosam/commit-from-branch/releases)
8-
[![License](https://img.shields.io/npm/l/@253eosam/commit-from-branch?style=flat-square&color=orange)](https://github.com/253eosam/commit-from-branch/blob/main/LICENSE)
8+
[![License](https://img.shields.io/npm/l/commit-from-branch?style=flat-square&color=orange)](https://github.com/253eosam/commit-from-branch/blob/main/LICENSE)
99

1010
[![CI Status](https://img.shields.io/github/actions/workflow/status/253eosam/commit-from-branch/release.yml?style=flat-square&label=CI)](https://github.com/253eosam/commit-from-branch/actions)
1111
[![GitHub Pages](https://img.shields.io/github/deployments/253eosam/commit-from-branch/github-pages?style=flat-square&label=Demo)](https://253eosam.github.io/commit-from-branch/)
12-
[![Node.js](https://img.shields.io/node/v/@253eosam/commit-from-branch?style=flat-square&color=brightgreen)](https://nodejs.org/)
12+
[![Node.js](https://img.shields.io/node/v/commit-from-branch?style=flat-square&color=brightgreen)](https://nodejs.org/)
1313
[![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue?style=flat-square)](https://www.typescriptlang.org/)
1414

1515
</div>
@@ -51,7 +51,7 @@ Automatically formats your commit messages based on your branch name, extracting
5151
## 📦 Installation
5252

5353
```bash
54-
npm install @253eosam/commit-from-branch --save-dev
54+
npm install commit-from-branch --save-dev
5555
```
5656

5757
> **Note**: This package requires Husky v9 as a peer dependency. npm will automatically warn you if it's not installed.
@@ -205,7 +205,7 @@ BRANCH_PREFIX_DRYRUN=1 git commit -m "test message"
205205
## 🔌 Programmatic Usage
206206

207207
```typescript
208-
import { run } from "@253eosam/commit-from-branch";
208+
import { run } from "commit-from-branch";
209209

210210
// Use with custom options
211211
const exitCode = run({
@@ -216,7 +216,7 @@ const exitCode = run({
216216
```
217217

218218
```typescript
219-
import { initHusky } from "@253eosam/commit-from-branch/init";
219+
import { initHusky } from "commit-from-branch/init";
220220

221221
// Setup Husky hook programmatically
222222
initHusky("/path/to/repo");
@@ -250,15 +250,15 @@ initHusky("/path/to/repo");
250250
## 🔗 Links
251251

252252
### Package & Releases
253-
- **[📦 NPM Package](https://www.npmjs.com/package/@253eosam/commit-from-branch)** - Official NPM package
253+
- **[📦 NPM Package](https://www.npmjs.com/package/commit-from-branch)** - Official NPM package
254254
- **[🚀 GitHub Releases](https://github.com/253eosam/commit-from-branch/releases)** - Release notes and downloads
255255
- **[🌐 Live Demo](https://253eosam.github.io/commit-from-branch/)** - Interactive demo
256256

257257
### Development & Community
258258
- **[💻 Source Code](https://github.com/253eosam/commit-from-branch)** - GitHub repository
259259
- **[🐛 Report Issues](https://github.com/253eosam/commit-from-branch/issues)** - Bug reports and feature requests
260260
- **[📊 CI/CD Pipeline](https://github.com/253eosam/commit-from-branch/actions)** - Build status and automation
261-
- **[📈 NPM Stats](https://npmcharts.com/compare/@253eosam/commit-from-branch)** - Download statistics
261+
- **[📈 NPM Stats](https://npmcharts.com/compare/commit-from-branch)** - Download statistics
262262

263263
### Documentation
264264
- **[📚 API Documentation](https://github.com/253eosam/commit-from-branch#-programmatic-usage)** - Programmatic usage guide

package-lock.json

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@253eosam/commit-from-branch",
2+
"name": "commit-from-branch",
33
"version": "0.3.0",
44
"description": "🚀 Flexible commit message templating from branch name (ticket/segments) for Husky's prepare-commit-msg hook. Automatically extracts Jira-style tickets and supports customizable templates.",
55
"keywords": [

0 commit comments

Comments
 (0)