Skip to content

Commit 4e54f0b

Browse files
committed
fix build
1 parent 7c482ba commit 4e54f0b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
- name: Install dependencies
3434
run: bun install --frozen-lockfile
3535

36-
- name: Build for npm (JavaScript bundle)
37-
run: bun run build:npm
38-
3936
- name: Build binaries for all platforms
4037
run: bun run build
4138

39+
- name: Build for npm (JavaScript bundle)
40+
run: bun run build:npm
41+
4242
- name: Get version from package.json
4343
id: package-version
4444
run: echo "version=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT

build-npm.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import pkg from "./package.json"
1313

1414
console.log("Building for npm publish...")
1515

16-
await Bun.$`rm -rf dist`
1716
await Bun.$`mkdir -p dist`
1817

1918
// Build a JavaScript bundle for npm (not a binary)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "effect-devtui",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Terminal UI for Effect DevTools",
55
"keywords": [
66
"effect",

0 commit comments

Comments
 (0)