Skip to content

Commit 55d1a1e

Browse files
chore: release v1.0.4
1 parent 26e308d commit 55d1a1e

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ jobs:
2525

2626
- name: Build package
2727
run: bun run build
28+
29+
- name: Configure npm auth
30+
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
31+
env:
32+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2833

2934
- name: Publish to npm
30-
run: bun publish
35+
run: bun publish --access public
3136
env:
3237
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"module": "dist/cli.js",
44
"main": "dist/cli.js",
55
"type": "module",
6-
"version": "1.0.3",
6+
"version": "1.0.4",
77
"description": "BunKill 🚀 - npkill alternative. Ultra-fast node_modules cleanup tool powered by Bun.js with interactive search, sorting, and accurate size reporting.",
88
"bin": {
99
"bunkill": "./dist/cli.js"

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const APP_CONFIG = {
22
packageName: "bunkill",
3-
currentVersion: "1.0.3",
3+
currentVersion: "1.0.4",
44
updateCheckFile: ".bunkill-last-update-check",
55
updateCheckIntervalMs: 24 * 60 * 60 * 1000,
66
updateCheckTimeoutMs: 2500,

0 commit comments

Comments
 (0)