Skip to content

Commit f7ecf72

Browse files
chore: version packages (#21)
Co-authored-by: Juhyeok Kang <[email protected]>
1 parent d21af03 commit f7ecf72

File tree

5 files changed

+28
-12
lines changed

5 files changed

+28
-12
lines changed

.changeset/cute-boxes-burn.md

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

packages/cli/CHANGELOG.md

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

3+
## 0.0.13
4+
### Patch Changes
5+
6+
7+
8+
- [#20](https://github.com/offlegacy/git-intent/pull/20) [`d21af03`](https://github.com/offlegacy/git-intent/commit/d21af0370b1cbdebe9bfc29f336585a39a2e25a3) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: remove vitest and simplify package configuration
9+
10+
- Updated dependencies [[`d21af03`](https://github.com/offlegacy/git-intent/commit/d21af0370b1cbdebe9bfc29f336585a39a2e25a3)]:
11+
- @offlegacy/git-intent-core@0.0.13
12+
313
## 0.0.12
414
### Patch Changes
515

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.12",
3+
"version": "0.0.13",
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"
@@ -31,7 +33,9 @@
3133
"pkg:build:macos": "pnpm build && pkg . --no-bytecode -t node18-macos-arm64 -o build/git-intent-macos"
3234
},
3335
"pkg": {
34-
"assets": ["dist/**/*"],
36+
"assets": [
37+
"dist/**/*"
38+
],
3539
"outputPath": "build"
3640
},
3741
"dependencies": {

packages/core/CHANGELOG.md

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

3+
## 0.0.13
4+
### Patch Changes
5+
6+
7+
8+
- [#20](https://github.com/offlegacy/git-intent/pull/20) [`d21af03`](https://github.com/offlegacy/git-intent/commit/d21af0370b1cbdebe9bfc29f336585a39a2e25a3) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: remove vitest and simplify package configuration
9+
310
## 0.0.12
411
### Patch Changes
512

packages/core/package.json

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

0 commit comments

Comments
 (0)