bun -> pnpm
This commit is contained in:
@@ -22,6 +22,7 @@
|
|||||||
"@pkg/logic": "workspace:*",
|
"@pkg/logic": "workspace:*",
|
||||||
"@pkg/result": "workspace:*",
|
"@pkg/result": "workspace:*",
|
||||||
"@tanstack/svelte-query": "^6.0.18",
|
"@tanstack/svelte-query": "^6.0.18",
|
||||||
|
"better-auth": "^1.4.20",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
"hono": "^4.11.1",
|
"hono": "^4.11.1",
|
||||||
"marked": "^17.0.1",
|
"marked": "^17.0.1",
|
||||||
|
|||||||
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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -5,11 +5,7 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24"
|
"node": ">=24"
|
||||||
},
|
},
|
||||||
"packageManager": "bun@1.3.5",
|
"packageManager": "pnpm@10.30.3",
|
||||||
"workspaces": [
|
|
||||||
"apps/*",
|
|
||||||
"packages/*"
|
|
||||||
],
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "turbo build",
|
"build": "turbo build",
|
||||||
"dev": "turbo dev --concurrency=8",
|
"dev": "turbo dev --concurrency=8",
|
||||||
|
|||||||
@@ -29,7 +29,6 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bun": "latest",
|
"@types/bun": "latest",
|
||||||
"@types/imapflow": "^1.0.22",
|
|
||||||
"@types/mailparser": "^3.4.6",
|
"@types/mailparser": "^3.4.6",
|
||||||
"@types/tmp": "^0.2.6",
|
"@types/tmp": "^0.2.6",
|
||||||
"@types/uuid": "^10.0.0"
|
"@types/uuid": "^10.0.0"
|
||||||
|
|||||||
5603
pnpm-lock.yaml
generated
Normal file
5603
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
3
pnpm-workspace.yaml
Normal file
3
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
packages:
|
||||||
|
- "apps/*"
|
||||||
|
- "packages/*"
|
||||||
Reference in New Issue
Block a user