diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..10dff7f --- /dev/null +++ b/CHANGELOG.md @@ -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Γ© + diff --git a/package.json b/package.json index b7b0f61..ef41a4a 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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", @@ -43,4 +48,4 @@ "bin": { "conmmit": "./dist/conmmit.js" } -} +} \ No newline at end of file