Merge pull request #23 from niclaz/jsr@std-migration

Dependency migration - jsr@std instead of deno.land
This commit is contained in:
Mykola Siusko 2024-09-11 16:55:02 +02:00 committed by GitHub
commit a39951d7bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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"))];

View File

@ -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

View File

@ -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";