Files
feeddeck/supabase/functions/import_map.json
Rico Berger f1400c7f81 [core] Fix Continuous Delivery for Supabase (#9)
The continuous delivery GitHub Action workflow to run the database
migration and to deploy the functions, runs in to the following error:

error: Uncaught (in promise) Error: Relative import path "http" not prefixed with / or ./ or ../ and not in import map from "https://esm.sh/v132/@types/node@18.16.19/http.d.ts"
      const ret = new Error(getStringFromWasm0(arg0, arg1));

See https://github.com/feeddeck/feeddeck/actions/runs/6199706506/job/16832826456#logs
2023-09-15 18:06:27 +02:00

15 lines
668 B
JSON

{
"imports": {
"std/server": "https://deno.land/std@0.177.0/http/server.ts",
"std/md5": "https://deno.land/std@0.119.0/hash/md5.ts",
"std/hex": "https://deno.land/std@0.177.0/encoding/hex.ts",
"@supabase/supabase-js": "https://esm.sh/@supabase/supabase-js@2.7.1",
"rss": "https://deno.land/x/rss@0.5.8/mod.ts",
"rss/types": "https://deno.land/x/rss@0.5.8/src/types/mod.ts",
"cheerio": "https://esm.sh/cheerio@1.0.0-rc.12",
"lodash": "https://raw.githubusercontent.com/lodash/lodash/4.17.21-es/lodash.js",
"redis": "https://deno.land/x/redis@v0.29.4/mod.ts",
"stripe": "https://esm.sh/stripe@12.9.0?target=deno&no-check"
}
}