Skip to content

Commit

Permalink
fix: use direct import path to use from external script
Browse files Browse the repository at this point in the history
  • Loading branch information
kawarimidoll committed Jun 11, 2023
1 parent 5f94a50 commit 32daa52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/setup-hooks.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Thank you for https://github.com/Yakiyo/deno_hooks

import { exists } from "std/fs/exists.ts";
import { parse } from "std/jsonc/parse.ts";
import { join } from "std/path/mod.ts";
import { parse } from "https://deno.land/std/jsonc/parse.ts";
import { exists } from "https://deno.land/std/fs/exists.ts";
import { join } from "https://deno.land/std/path/mod.ts";

const KNOWN_HOOKS = [
"applypatch-msg",
Expand Down

0 comments on commit 32daa52

Please sign in to comment.