Does anyone have it working with Supabase Edge Functions? I've got a 'missing dependencies' error.
"worker boot error: Could not find package '@hono/standard-validator' from referrer 'file:///var/tmp/sb-compile-edge-runtime/node_modules/localhost/hono-openapi/1.1.0/dist/index.js' (hono-openapi@1.1.0)."
I specified import in deno.json, but that didn't help.
{
"imports": {
"@hono/standard-validator": "npm:@hono/standard-validator"
}
}
I created a temporary workaround by copying the project to my workspace, which worked.
Does anyone have it working with Supabase Edge Functions? I've got a 'missing dependencies' error.
"worker boot error: Could not find package '@hono/standard-validator' from referrer 'file:///var/tmp/sb-compile-edge-runtime/node_modules/localhost/hono-openapi/1.1.0/dist/index.js' (hono-openapi@1.1.0)."
I specified import in deno.json, but that didn't help.
{ "imports": { "@hono/standard-validator": "npm:@hono/standard-validator" } }I created a temporary workaround by copying the project to my workspace, which worked.