Skip to content

Commit fd75505

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

File tree

5 files changed

+28
-12
lines changed

5 files changed

+28
-12
lines changed

.changeset/grumpy-cobras-act.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.12
4+
### Patch Changes
5+
6+
7+
8+
- [#18](https://github.com/offlegacy/git-intent/pull/18) [`4111158`](https://github.com/offlegacy/git-intent/commit/4111158de2c47fabeffce8fcb8f54fb6b2152bb8) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: add NODE_AUTH_TOKEN in changeset action
9+
10+
- Updated dependencies [[`4111158`](https://github.com/offlegacy/git-intent/commit/4111158de2c47fabeffce8fcb8f54fb6b2152bb8)]:
11+
- @offlegacy/git-intent-core@0.0.12
12+
313
## 0.0.11
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.11",
3+
"version": "0.0.12",
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"
@@ -33,7 +35,9 @@
3335
"test:ui": "vitest --ui"
3436
},
3537
"pkg": {
36-
"assets": ["dist/**/*"],
38+
"assets": [
39+
"dist/**/*"
40+
],
3741
"outputPath": "build"
3842
},
3943
"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.12
4+
### Patch Changes
5+
6+
7+
8+
- [#18](https://github.com/offlegacy/git-intent/pull/18) [`4111158`](https://github.com/offlegacy/git-intent/commit/4111158de2c47fabeffce8fcb8f54fb6b2152bb8) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: add NODE_AUTH_TOKEN in changeset action
9+
310
## 0.0.11
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.11",
3+
"version": "0.0.12",
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)