bun -> pnpm
This commit is contained in:
2
apps/processor/.gitignore
vendored
2
apps/processor/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
# deps
|
||||
node_modules/
|
||||
@@ -1,11 +0,0 @@
|
||||
To install dependencies:
|
||||
```sh
|
||||
bun install
|
||||
```
|
||||
|
||||
To run:
|
||||
```sh
|
||||
bun run dev
|
||||
```
|
||||
|
||||
open http://localhost:3000
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"name": "@app/processor",
|
||||
"scripts": {
|
||||
"dev": "bun run --hot src/index.ts",
|
||||
"prod": "bun run src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"hono": "^4.12.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
import { Hono } from 'hono'
|
||||
|
||||
const app = new Hono()
|
||||
|
||||
app.get('/', (c) => {
|
||||
return c.text('Hello Hono!')
|
||||
})
|
||||
|
||||
export default app
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"strict": true,
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "hono/jsx"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user