Skip to content

Commit

Permalink
Bun
Browse files Browse the repository at this point in the history
  • Loading branch information
torn4dom4n authored Apr 5, 2024
1 parent 5eaa16f commit 7e60f60
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
dist/
node_modules/
pnpm-lock.yaml
.netlify/
.astro/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To run SYWYKE locally, follow these steps:
1. Clone the repository: `git clone https://github.com/AREA44/SYWYKE.git`
2. Navigate to the project directory: `cd SYWYKE`
3. Install dependencies: `bun install`
4. Start the local development server: `bun dev`
4. Start the local development server: `bun run dev`
5. Open your browser and visit [http://localhost:4321](http://localhost:4321) to view the SYWYKE site.

## Contributing
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"license": "MIT",
"author": "AREA44",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"dev": "bunx --bun astro dev",
"start": "bunx --bun astro dev",
"build": "bunx --bun astro build",
"preview": "bunx --bun astro preview",
"format": "prettier -w . --cache"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"installCommand": "bun install",
"buildCommand": "astro build",
"buildCommand": "bunx --bun astro build",
"outputDirectory": "dist",
"github": {
"silent": true
Expand Down

0 comments on commit 7e60f60

Please sign in to comment.