We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9252642 commit 21181efCopy full SHA for 21181ef
README.md
@@ -28,43 +28,43 @@
28
**Install Dependencies**
29
30
```bash
31
-npm install
+bun install
32
```
33
34
**Start Development Server**
35
36
37
-npm run dev
+bun run dev
38
39
40
**Lint all the files**
41
42
43
-npm run lint
+bun run lint
44
45
46
**Format all files with Prettier**
47
48
49
-npm run format
+bun run format
50
51
52
**Check TypeScript issues**
53
54
55
-npm run type-check
+bun run type-check
56
57
58
**Build for Production**
59
60
61
-npm run build
+bun run build
62
63
64
**Start Production Server**
65
66
67
-npm start
+bun start
68
69
70
---
0 commit comments