Skip to content

Commit eaf4bfd

Browse files
committed
chore: temporarily use old way
This reverts commit 64d0772.
1 parent e6aae76 commit eaf4bfd

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

package.json

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,9 @@
4141
"lint": "bunx --bun eslint .",
4242
"lint:fix": "bunx --bun eslint . --fix",
4343
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
44-
"logsmith": "bun node_modules/@stacksjs/logsmith/dist/bin/cli.js",
45-
"changelog": "bun logsmith --output CHANGELOG.md --theme github --exclude-authors \"dependabot[bot],github-actions[bot]\" --exclude-types \"chore\" --max-commits 50",
46-
"changelog:generate": "bun node_modules/@stacksjs/logsmith/dist/bin/cli.js --output CHANGELOG.md --theme github --exclude-authors \"dependabot[bot],github-actions[bot]\" --exclude-types \"chore\" --max-commits 50",
47-
"bumpx": "bun node_modules/@stacksjs/bumpx/dist/bin/cli.js ",
48-
"release": "bun run bumpx prompt --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit",
44+
"changelog": "bunx changelogen --output CHANGELOG.md",
4945
"prepublishOnly": "bun run build",
46+
"release": "bun run changelog && bunx bumpp package.json --all",
5047
"test": "bun test",
5148
"typecheck": "bunx tsc --noEmit",
5249
"dev:docs": "bun --bun vitepress dev docs",
@@ -61,25 +58,19 @@
6158
"ts-pkgx": "0.4.4"
6259
},
6360
"devDependencies": {
64-
"@stacksjs/bumpx": "^0.1.2",
6561
"@stacksjs/docs": "^0.70.23",
6662
"@stacksjs/eslint-config": "^4.10.2-beta.3",
67-
"@stacksjs/gitlint": "^0.1.5",
68-
"@stacksjs/logsmith": "^0.1.2",
6963
"@types/bun": "^1.2.17",
70-
"bun-git-hooks": "^0.2.19",
7164
"bun-plugin-dtsx": "^0.9.5",
7265
"typescript": "^5.8.3"
7366
},
7467
"overrides": {
7568
"unconfig": "0.3.10"
7669
},
77-
"git-hooks": {
78-
"pre-commit": {
79-
"staged-lint": {
80-
"*.{js,ts,yaml,yml,md}": "bun lint:fix"
81-
}
82-
},
83-
"commit-msg": "bunx gitlint .git/COMMIT_EDITMSG"
70+
"simple-git-hooks": {
71+
"pre-commit": "bunx lint-staged"
72+
},
73+
"lint-staged": {
74+
"*.{js,ts}": "bunx eslint . --fix"
8475
}
8576
}

0 commit comments

Comments
 (0)