{
"imports": {
"@openai/openai": "jsr:@openai/openai@^4.88.0",
"@types/express": "npm:@types/express@^5.0.0",
"botbuilder": "npm:botbuilder@4.23.2",
"botbuilder-core": "npm:botbuilder-core@4.23.2",
"botframework-schema": "npm:botframework-schema@4.23.2",
"drizzle-orm": "npm:drizzle-orm@^0.44.4",
"drizzle-orm/": "npm:/drizzle-orm@^0.44.4/",
"express": "npm:express@^5.1.0",
"pg": "npm:pg@^8.15.6",
"rrule": "npm:rrule@^2.8.1",
"zod": "npm:zod@^3.24.2"
},
"compilerOptions": {
"types": ["npm:@types/pg", "npm:@types/express"]
}
}
Bug report
Describe the bug
Without any changes in our code, our edge functions script size (as reported by
supabase functions deploy) have increased by around 50% with the recent supabase cli versions with upgraded edge-runtime (v1.68.3 -> v1.69.1) supabase/cli#4064This started happening in supabase cli version 2.38.1
Our
./supabase/functions/<function>are part ofworkspace defined in./deno.json`, not sure if that is relevant.Our functions:
deno infobotindex-knowledgelocal-testmessage-workerschedulesTo Reproduce
npx supabase@2.38.0 functions deploy <function-name>, check the output forDeploying Function: ... (script size: <size-1>)npx supabase@2.38.1 functions deploy <function-name>, check the output forDeploying Function: ... (script size: <size-2>)size-2is noticeably bigger thansize-2.Expected behavior
Size should be roughly the same.
System information
Irrelevant.