Skip to content

Commit

Permalink
feat: bun types
Browse files Browse the repository at this point in the history
  • Loading branch information
rayriffy committed Dec 12, 2023
1 parent 004bcaa commit 24d1ac2
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 27 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PATH="${PATH}:/root/.bun/bin"
RUN apt update
RUN apt install curl unzip patch -y

RUN curl https://bun.sh/install | bash -s -- bun-v1.0.15
RUN curl https://bun.sh/install | bash -s -- bun-v1.0.17

RUN bun -v

Expand Down
Binary file modified bun.lockb
Binary file not shown.
51 changes: 26 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,6 @@
"type": "git",
"url": "git+https://github.com/rayriffy/rayriffy-h.git"
},
"devDependencies": {
"@prisma/client": "5.6.0",
"@sveltejs/kit": "1.27.7",
"@types/cookie": "0.6.0",
"@types/lodash.kebabcase": "4.1.9",
"@types/node": "20.10.3",
"@vite-pwa/sveltekit": "0.2.8",
"autoprefixer": "10.4.16",
"daisyui": "4.4.19",
"postcss": "8.4.32",
"prettier": "3.1.0",
"prettier-plugin-svelte": "3.1.2",
"prettier-plugin-tailwindcss": "0.5.9",
"prisma": "5.6.0",
"rollup-plugin-visualizer": "5.10.0",
"svelte": "4.2.8",
"svelte-adapter-bun": "0.5.1",
"svelte-check": "3.6.2",
"tailwindcss": "3.3.6",
"tslib": "2.6.2",
"typescript": "5.3.2",
"vite": "5.0.5",
"vite-plugin-pwa": "0.17.3",
"workbox-window": "7.0.0"
},
"bugs": {
"url": "https://github.com/rayriffy/rayriffy-h/issues"
},
Expand Down Expand Up @@ -73,6 +48,32 @@
"trpc-sveltekit": "^3.5.22",
"zod": "3.22.4"
},
"devDependencies": {
"@prisma/client": "5.6.0",
"@sveltejs/kit": "1.27.7",
"@types/cookie": "0.6.0",
"@types/lodash.kebabcase": "4.1.9",
"@types/node": "20.10.3",
"@vite-pwa/sveltekit": "0.2.8",
"autoprefixer": "10.4.16",
"bun-types": "1.0.17",
"daisyui": "4.4.19",
"postcss": "8.4.32",
"prettier": "3.1.0",
"prettier-plugin-svelte": "3.1.2",
"prettier-plugin-tailwindcss": "0.5.9",
"prisma": "5.6.0",
"rollup-plugin-visualizer": "5.10.0",
"svelte": "4.2.8",
"svelte-adapter-bun": "0.5.1",
"svelte-check": "3.6.2",
"tailwindcss": "3.3.6",
"tslib": "2.6.2",
"typescript": "5.3.2",
"vite": "5.0.5",
"vite-plugin-pwa": "0.17.3",
"workbox-window": "7.0.0"
},
"overrides": {
"@rollup/plugin-node-resolve": "15.2.3",
"sharp": "0.33.0"
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
"strict": true,
"types": ["bun-types"]
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
Expand Down

0 comments on commit 24d1ac2

Please sign in to comment.