File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# use the official Bun image
2
2
# see all versions at https://hub.docker.com/r/oven/bun/tags
3
- FROM oven /bun:1 AS base
3
+ FROM imbios /bun-node AS base
4
4
WORKDIR /usr/src/app
5
5
6
6
# install dependencies into temp directory
Original file line number Diff line number Diff line change 11
11
"format" : " prettier --write ." ,
12
12
"lint" : " prettier --check . && eslint ." ,
13
13
"gateway:start" : " hive-gateway supergraph --port 5000" ,
14
- "app:start" : " bun ./build/index.js" ,
14
+ "app:start" : " node ./build/index.js" ,
15
15
"startall" : " concurrently 'bun gateway:start' 'bun app:start'"
16
16
},
17
17
"devDependencies" : {
33
33
"prettier" : " ^3.3.2" ,
34
34
"prettier-plugin-svelte" : " ^3.2.6" ,
35
35
"svelte" : " ^5.0.0" ,
36
- "svelte-adapter-bun" : " ^0.5.2" ,
37
36
"svelte-check" : " ^4.0.0" ,
38
37
"typescript" : " ^5.0.0" ,
39
38
"typescript-eslint" : " ^8.0.0" ,
47
46
"@graphql-mesh/transform-prefix" : " ^0.102.12" ,
48
47
"@graphql-mesh/transform-rename" : " ^0.102.12" ,
49
48
"@graphql-mesh/transform-type-merging" : " ^0.102.12" ,
49
+ "@sveltejs/adapter-node" : " ^5.2.9" ,
50
50
"arctic" : " ^2.2.2" ,
51
51
"dotenv" : " ^16.4.5" ,
52
52
"graphql" : " ^16.9.0" ,
Original file line number Diff line number Diff line change 1
- import adapter from 'svelte- adapter-bun ' ;
1
+ import adapter from '@sveltejs/ adapter-node ' ;
2
2
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte' ;
3
3
4
4
/** @type {import('@sveltejs/kit').Config } */
You can’t perform that action at this time.
0 commit comments