mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
Merge pull request #23 from niclaz/jsr@std-migration
Dependency migration - jsr@std instead of deno.land
This commit is contained in:
commit
a39951d7bd
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
import { join } from "https://deno.land/std@0.216.0/path/join.ts";
|
||||
import { join } from "jsr:@std/path@0.224.0";
|
||||
|
||||
const src = JSON.parse(await Deno.readTextFile("./src/core.json"));
|
||||
const usedFlags = [...new Set(src.events.map((e) => e.country + ".svg"))];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import "https://deno.land/std@0.206.0/dotenv/load.ts";
|
||||
import "jsr:@std/dotenv@0.224.0";
|
||||
|
||||
const contributorRepos = [
|
||||
// main repos
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { run } from "https://deno.land/x/run_simple/mod.ts";
|
||||
import { join } from "https://deno.land/std@0.208.0/path/mod.ts";
|
||||
import { join } from "jsr:@std/path@0.224.0";
|
||||
|
||||
const IMG_DIR = "./public/gen-img/events";
|
||||
|
||||
|
|
Loading…
Reference in a new issue