diff --git a/deno.jsonc b/deno.jsonc index 6376ffa..440dd06 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,11 +1,11 @@ { "tasks": { "start": "deno run -A mod.ts", - "release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/easy_std@v0.4.3/scripts/release.ts", + "release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/easy_std@v0.4.6/scripts/release.ts", "install": "deno install --allow-read --allow-env --allow-run --allow-write --unstable -rfn n mod.ts" }, "fmt": { "semiColons": false }, "lock": true -} +} \ No newline at end of file diff --git a/src/cli.ts b/src/cli.ts index c2a8a69..75b11ef 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -8,7 +8,7 @@ import { emptyDir } from "https://deno.land/std@0.193.0/fs/empty_dir.ts" import { ensureFile } from "https://deno.land/std@0.193.0/fs/ensure_file.ts" import { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.2/command/command.ts" import { EnumType } from "https://deno.land/x/cliffy@v1.0.0-rc.2/command/types/enum.ts" -import { execa } from "https://deno.land/x/easy_std@v0.4.5/src/process.ts" +import { execa } from "https://deno.land/x/easy_std@v0.4.6/src/process.ts" import { type PM, pmLock, pms } from "./constant.ts" import { existsFile, findUp } from "./fs.ts" diff --git a/src/fs.ts b/src/fs.ts index 5ae4675..1a8d8a0 100644 --- a/src/fs.ts +++ b/src/fs.ts @@ -1,6 +1,6 @@ import { exists } from "https://deno.land/std@0.193.0/fs/exists.ts" import { join } from "https://deno.land/std@0.193.0/path/posix.ts" -import { createUpBases } from "https://deno.land/x/easy_std@v0.4.5/src/path.ts" +import { createUpBases } from "https://deno.land/x/easy_std@v0.4.6/src/path.ts" export function existsFile(path: string) { return exists(path, { diff --git a/src/pm.ts b/src/pm.ts index ef1e48e..7d94035 100644 --- a/src/pm.ts +++ b/src/pm.ts @@ -1,5 +1,5 @@ import type { PM } from "./constant.ts" -import { execa } from "https://deno.land/x/easy_std@v0.4.5/src/process.ts" +import { execa } from "https://deno.land/x/easy_std@v0.4.6/src/process.ts" export async function getPackageCommands() { try {