Skip to content

Commit 14628da

Browse files
committed
fix: publish error to npm
1 parent 7f857be commit 14628da

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ jobs:
2525
bun-version: latest
2626

2727
- name: Setup Node.js
28-
uses: actions/setup-node@v4
28+
uses: actions/setup-node@v5
2929
with:
3030
node-version: '20'
3131
registry-url: 'https://registry.npmjs.org'
32-
token: ${{ secrets.NPM_TOKEN }}
3332

3433
- name: Install dependencies
3534
run: bun install --frozen-lockfile

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tukuyomil032/broom",
33
"private": false,
4-
"version": "1.0.4",
4+
"version": "1.0.5",
55
"description": "🧹 macOS Disk Cleanup CLI - Clean up caches, logs, trash, browser data, dev artifacts, and more",
66
"type": "module",
77
"main": "./dist/index.js",
@@ -87,6 +87,5 @@
8787
"eslint --fix",
8888
"prettier --write"
8989
]
90-
},
91-
"packageManager": "bun@1.3.6"
90+
}
9291
}

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
import { enableDebug, debug } from './utils/debug.js';
3434
import { getGlobalOptionsTable } from './utils/help.js';
3535

36-
const VERSION = '1.0.3';
36+
const VERSION = '1.0.5';
3737

3838
// ASCII art logo
3939
const logo = chalk.cyan(`

0 commit comments

Comments
 (0)