Skip to content

Commit

Permalink
Fix public files
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshikouki committed Mar 3, 2024
1 parent 080afd0 commit d19ebe1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build app
run: bun run build
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "bun-hot-reload",
"version": "1.0.0",
"module": "src/index.ts",
"module": "dist/index.js",
"type": "module",
"files": [
"src/index.ts"
"dist/*"
],
"scripts": {
"lint": "bun --bun x @biomejs/biome check .",
"lint:fix": "bun --bun x @biomejs/biome check --apply .",
"test": "bun test"
"test": "bun test",
"build": "bun build ./src/index.ts --outdir ./dist --target bun"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
Expand Down

0 comments on commit d19ebe1

Please sign in to comment.