Skip to content

Commit 91cb89f

Browse files
chore: version packages (#23)
Co-authored-by: Juhyeok Kang <[email protected]>
1 parent c4d04b4 commit 91cb89f

File tree

6 files changed

+36
-18
lines changed

6 files changed

+36
-18
lines changed

.changeset/loose-pianos-try.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/modern-schools-shout.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# git-intent
22

3+
## 0.0.14
4+
### Patch Changes
5+
6+
7+
8+
- [#25](https://github.com/offlegacy/git-intent/pull/25) [`c4d04b4`](https://github.com/offlegacy/git-intent/commit/c4d04b4ca7540ac8ceae40ddbc39ec85ba81890d) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: add type-check script to package.json
9+
10+
11+
12+
- [#22](https://github.com/offlegacy/git-intent/pull/22) [`224ebee`](https://github.com/offlegacy/git-intent/commit/224ebee0d18f9cece78406f60574cc9e1675fd7c) Thanks [@kangju2000](https://github.com/kangju2000)! - feat: add error and event modules
13+
14+
- Updated dependencies [[`c4d04b4`](https://github.com/offlegacy/git-intent/commit/c4d04b4ca7540ac8ceae40ddbc39ec85ba81890d), [`224ebee`](https://github.com/offlegacy/git-intent/commit/224ebee0d18f9cece78406f60574cc9e1675fd7c)]:
15+
- @offlegacy/git-intent-core@0.0.14
16+
317
## 0.0.13
418
### Patch Changes
519

packages/cli/package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "git-intent",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "Git workflow tool for intentional commits — define your commit intentions first for clearer, more atomic changes.",
55
"keywords": [
66
"git",
@@ -13,7 +13,9 @@
1313
"todo-driven"
1414
],
1515
"license": "MIT",
16-
"files": ["dist"],
16+
"files": [
17+
"dist"
18+
],
1719
"type": "module",
1820
"bin": {
1921
"git-intent": "./dist/index.cjs"
@@ -32,7 +34,9 @@
3234
"type-check": "tsc --noEmit"
3335
},
3436
"pkg": {
35-
"assets": ["dist/**/*"],
37+
"assets": [
38+
"dist/**/*"
39+
],
3640
"outputPath": "build"
3741
},
3842
"dependencies": {

packages/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @offlegacy/git-intent-core
22

3+
## 0.0.14
4+
### Patch Changes
5+
6+
7+
8+
- [#25](https://github.com/offlegacy/git-intent/pull/25) [`c4d04b4`](https://github.com/offlegacy/git-intent/commit/c4d04b4ca7540ac8ceae40ddbc39ec85ba81890d) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: add type-check script to package.json
9+
10+
11+
12+
- [#22](https://github.com/offlegacy/git-intent/pull/22) [`224ebee`](https://github.com/offlegacy/git-intent/commit/224ebee0d18f9cece78406f60574cc9e1675fd7c) Thanks [@kangju2000](https://github.com/kangju2000)! - feat: add error and event modules
13+
314
## 0.0.13
415
### Patch Changes
516

packages/core/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"name": "@offlegacy/git-intent-core",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "Core functionality for git-intent",
55
"type": "module",
66
"main": "dist/index.cjs",
77
"module": "dist/index.js",
88
"types": "dist/index.d.ts",
9-
"files": ["dist"],
9+
"files": [
10+
"dist"
11+
],
1012
"scripts": {
1113
"dev": "tsup --watch",
1214
"build": "tsup",

0 commit comments

Comments
 (0)