Skip to content

Commit

Permalink
chore(release): v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renejfc committed Mar 25, 2024
1 parent f848ffd commit f8209ad
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 9 deletions.
60 changes: 60 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Changelog


## v0.0.2


### 🚀 Enhancements

- ***:** Mvp? ([4368a83](https://github.com/renejfc/conmmit/commit/4368a83))
- Add bun shebang to script ([c6f0f46](https://github.com/renejfc/conmmit/commit/c6f0f46))
- **poc:** Add jsx implementation 4 prompts ([8526456](https://github.com/renejfc/conmmit/commit/8526456))
- **prompts:** Add a few primitive prompts ([e0fb4ab](https://github.com/renejfc/conmmit/commit/e0fb4ab))
- **runtime:** Improve impl + edge case ([af37b9c](https://github.com/renejfc/conmmit/commit/af37b9c))
- **prompts:** Add select :) lookin g00d ([d8a5876](https://github.com/renejfc/conmmit/commit/d8a5876))
- **prompts:** Add multi-select prompt ([8510ff4](https://github.com/renejfc/conmmit/commit/8510ff4))
- **prompts:** Add few prompts ([83a2869](https://github.com/renejfc/conmmit/commit/83a2869))
- **prompts:** Add spinner lesgo ([e42a5d1](https://github.com/renejfc/conmmit/commit/e42a5d1))
- **prompts:** Add group prompt :) ([2532a78](https://github.com/renejfc/conmmit/commit/2532a78))
- Add core functionality ([64d2c0b](https://github.com/renejfc/conmmit/commit/64d2c0b))

### 💅 Refactors

- **types:** Refactor jsx types ([d211c4b](https://github.com/renejfc/conmmit/commit/d211c4b))
- **prompts:** Change spinner ([bcdcf7d](https://github.com/renejfc/conmmit/commit/bcdcf7d))
- Change note prompt & dev runtime ([c206b1c](https://github.com/renejfc/conmmit/commit/c206b1c))

### 📖 Documentation

- **core:** Add info notes ([34a3a61](https://github.com/renejfc/conmmit/commit/34a3a61))

### 🏡 Chore

- **package:** Add main property ([75f0dd9](https://github.com/renejfc/conmmit/commit/75f0dd9))
- **version:** Change version to alpha ([4f6725f](https://github.com/renejfc/conmmit/commit/4f6725f))
- **git:** Remove build from .gitignore ([f5218e9](https://github.com/renejfc/conmmit/commit/f5218e9))
- **version:** Bump version ([a167503](https://github.com/renejfc/conmmit/commit/a167503))
- **package:** Change bin path ([b660231](https://github.com/renejfc/conmmit/commit/b660231))
- **version:** Bump ([e03b66e](https://github.com/renejfc/conmmit/commit/e03b66e))
- **version:** Bump ([7929ca4](https://github.com/renejfc/conmmit/commit/7929ca4))
- **cq-tooling:** Update biome, add lefthook & more ([d67ed0e](https://github.com/renejfc/conmmit/commit/d67ed0e))
- Fix git hooks ([b57efe6](https://github.com/renejfc/conmmit/commit/b57efe6))
- Add dev & comp scripts ([23342e3](https://github.com/renejfc/conmmit/commit/23342e3))
- Change cq scripts ([f848ffd](https://github.com/renejfc/conmmit/commit/f848ffd))

### 🎨 Styles

- **code-quality:** Format changes ([e6f8551](https://github.com/renejfc/conmmit/commit/e6f8551))
- **format:** Fix format ([781e5b4](https://github.com/renejfc/conmmit/commit/781e5b4))

### 🤖 CI

- **config:** Change to proper syntax ([1efc511](https://github.com/renejfc/conmmit/commit/1efc511))
- **config:** Deactive main workflow temporarily ([62c3626](https://github.com/renejfc/conmmit/commit/62c3626))
- **workflow:** Delete main workflow ([e807436](https://github.com/renejfc/conmmit/commit/e807436))
- **release:** Add config ([ec0d21b](https://github.com/renejfc/conmmit/commit/ec0d21b))

### ❤️ Contributors

- René <[email protected]>

23 changes: 14 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"version": "0.0.2-alpha.3",
"version": "0.0.2",
"name": "conmmit",
"author": {
"name": "ReneJFC",
"url": "https://x.com/ReneJFC_"
},
"keywords": ["commit", "conventional commits", "cli", "git"],
"keywords": [
"commit",
"conventional commits",
"cli",
"git"
],
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -15,14 +20,14 @@
"start": "NODE_ENV=production bun ./src/index.tsx",
"dev": "bun ./scripts/dev.ts",
"comp": "bun ./scripts/build.ts",
"format": "biome format .",
"format:fix": "biome format . --write",
"format": "biome format ./src",
"format:fix": "biome format ./src --write",
"typecheck": "tsc",
"lint": "biome lint .",
"lint:fix": "biome lint . --apply",
"magic:fix": "biome check . --apply",
"lint": "biome lint ./src",
"lint:fix": "biome lint ./src --apply",
"magic:fix": "biome check ./src --apply",
"postinstall": "bunx lefthook install",
"release": "bun magic:fix && bun typecheck && bun comp && changelogen --clean --release --push --publish"
"release": "bun magic:fix && bun typecheck && bun comp && changelogen --release --push --publish"
},
"devDependencies": {
"@biomejs/biome": "latest",
Expand All @@ -43,4 +48,4 @@
"bin": {
"conmmit": "./dist/conmmit.js"
}
}
}

0 comments on commit f8209ad

Please sign in to comment.