Skip to content

Commit

Permalink
Update to use bun
Browse files Browse the repository at this point in the history
  • Loading branch information
y3fers0n committed Dec 3, 2024
1 parent 7f80afe commit 8fbf611
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
scope: '@trustwallet'
- name: Generate version
id: get-next-version
run: npm run build:version
run: |
bun install --frozen-lockfile
bun run build:version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set output
Expand Down
Binary file modified bun.lockb
Binary file not shown.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"generate": "bun run ./scripts/generate.ts",
"rename": "bun run ./scripts/rename.ts",
"publish": "bun run ./scripts/publish.ts",
"build:version": "NODE_ENV=production npx semantic-release --dry-run"
"build:version": "NODE_ENV=production semantic-release --dry-run"
},
"workspaces": [
"packages/*"
Expand All @@ -31,11 +31,13 @@
"rollup-plugin-esbuild": "4.9.3",
"simple-scaffold": "2.2.1",
"typescript": "^5.0.0",
"typescript-eslint": "^7.10.0",
"semantic-release": "^24.2.0"
"typescript-eslint": "^7.10.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": { "semantic-release-export-data": "^1.1.0" }
"dependencies": {
"semantic-release-export-data": "^1.1.0",
"semantic-release": "^24.2.0"
}
}

0 comments on commit 8fbf611

Please sign in to comment.