removed bad template updates from previous autoformatter

This commit is contained in:
Brian Madison
2025-06-17 21:40:59 -05:00
parent e8208ec277
commit bc7cc0439a
6 changed files with 120 additions and 117 deletions

View File

@@ -8,11 +8,11 @@ The easiest way to release new versions is through **automatic semantic releases
Use these prefixes to control what type of release happens:
````bash
```bash
fix: resolve CLI argument parsing bug # → patch release (4.1.0 → 4.1.1)
feat: add new agent orchestration mode # → minor release (4.1.0 → 4.2.0)
feat!: redesign CLI interface # → major release (4.1.0 → 5.0.0)
```text
```
### What Happens Automatically
@@ -35,24 +35,24 @@ git push
# That's it! Release happens automatically 🎉
# Users can now run: npx bmad-method (and get the new version)
````
```
### Commits That DON'T Trigger Releases
These commit types won't create releases (use them for maintenance):
````bash
```bash
chore: update dependencies # No release
docs: fix typo in readme # No release
style: format code # No release
test: add unit tests # No release
```text
```
### Test Your Setup
```bash
npm run release:test # Safe to run locally - tests the config
````
```
---