Skip to content

Commit

Permalink
Fix(Conventional Commits): Typo Deprecate
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Jul 11, 2023
1 parent 259c6df commit f97a678
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/commitlint-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Type(Target): Summary
┊ ┊
┊ └─⫸ Target: Workspace, Package or Role
└─⫸ Type: Bump, Feat, New, Perf, Add, Update, Improve, Fix, Depreciate, Drop, Docs, Upgrade, Revert, Example, Test, Refactor, Chore, Misc
└─⫸ Type: Bump, Feat, New, Perf, Add, Update, Improve, Fix, Deprecate, Drop, Docs, Upgrade, Revert, Example, Test, Refactor, Chore, Misc
```

For the full documentation, check out the [Techor's conventional commits](https://github.com/1aron/techor/tree/main/packages/conventional-commits)
Expand Down
2 changes: 1 addition & 1 deletion packages/conventional-changelog-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Type(Target): Summary
┊ ┊
┊ └─⫸ Target: Workspace, Package or Role
└─⫸ Type: Bump, Feat, New, Perf, Add, Update, Improve, Fix, Depreciate, Drop, Docs, Upgrade, Revert, Example, Test, Refactor, Chore, Misc
└─⫸ Type: Bump, Feat, New, Perf, Add, Update, Improve, Fix, Deprecate, Drop, Docs, Upgrade, Revert, Example, Test, Refactor, Chore, Misc
```
For full documentation, check out the [Techor's conventional commits](https://github.com/1aron/techor/tree/main/packages/conventional-commits)

Expand Down
8 changes: 4 additions & 4 deletions packages/conventional-commits/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Type(Target): Summary
┊ ┊
┊ └─⫸ Target: Workspace, Package or Role
└─⫸ Type: Bump, Feat, New, Perf, Add, Update, Improve, Fix, Depreciate, Drop, Docs, Upgrade, Revert, Example, Test, Refactor, Chore, Misc
└─⫸ Type: Bump, Feat, New, Perf, Add, Update, Improve, Fix, Deprecate, Drop, Docs, Upgrade, Revert, Example, Test, Refactor, Chore, Misc
```

- `Type`
Expand All @@ -89,7 +89,7 @@ Type(Target): Summary
Such commits result in version bumps.

### Patch
`Perf` `Add` `Update` `Improve` `Fix` `Depreciate` `Drop` `Upgrade` `Revert` `Bump(Patch)` `Docs(README)`
`Perf` `Add` `Update` `Improve` `Fix` `Deprecate` `Drop` `Upgrade` `Revert` `Bump(Patch)` `Docs(README)`

#### Bug Fixes
`Changelog` `+0.0.1` A change to a system or product designed to handle a programming bug/glitch.
Expand Down Expand Up @@ -178,8 +178,8 @@ Upgrade(Compiler): Dependency `@master/css@^2.0.0`
#### Deprecations
`Changelog` `+0.0.1` `Alias: Drop` Deprecate features, options, parameters, units, pages, etc.
```
Depreciate: <Summary>
Depreciate(Target): <Summary>
Deprecate: <Summary>
Deprecate(Target): <Summary>
```

Example
Expand Down
2 changes: 1 addition & 1 deletion packages/conventional-commits/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const commits = [

{ type: 'Fix', release: 'patch', group: 'Bug Fixes' },

{ type: 'Depreciate', release: 'patch', group: 'Deprecations' },
{ type: 'Deprecate', release: 'patch', group: 'Deprecations' },
{ type: 'Drop', release: 'patch', group: 'Deprecations' },

{ type: 'Docs', release: false, group: 'Documentation' },
Expand Down

0 comments on commit f97a678

Please sign in to comment.