Skip to content

Commit 3f22142

Browse files
authored
Remove 'bunx' from build script in package.json (#451)
* Remove 'bunx' from build script in package.json * Add bun install step to publish workflow Added a step to install dependencies using bun.
1 parent 3c715af commit 3f22142

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
with:
2020
bun-version-file: package.json
2121

22+
- name: Install
23+
run: bun install
24+
2225
- name: Semantic Release
2326
uses: cycjimmy/semantic-release-action@v5
2427
env:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"vite": "7.1.6"
4949
},
5050
"scripts": {
51-
"build": "bunx tsup src/index.ts src/cli.ts --clean --dts --format cjs",
51+
"build": "tsup src/index.ts src/cli.ts --clean --dts --format cjs",
5252
"cypress:open": "cypress open",
5353
"cypress:component": "cypress run --component",
5454
"cypress:e2e": "cypress run",

0 commit comments

Comments
 (0)