Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
markthree committed Jul 7, 2023
1 parent f3a2ab8 commit 80ec9e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -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/[email protected].3/scripts/release.ts",
"release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/[email protected].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
}
}
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { emptyDir } from "https://deno.land/[email protected]/fs/empty_dir.ts"
import { ensureFile } from "https://deno.land/[email protected]/fs/ensure_file.ts"
import { Command } from "https://deno.land/x/[email protected]/command/command.ts"
import { EnumType } from "https://deno.land/x/[email protected]/command/types/enum.ts"
import { execa } from "https://deno.land/x/[email protected].5/src/process.ts"
import { execa } from "https://deno.land/x/[email protected].6/src/process.ts"

import { type PM, pmLock, pms } from "./constant.ts"
import { existsFile, findUp } from "./fs.ts"
Expand Down
2 changes: 1 addition & 1 deletion src/fs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { exists } from "https://deno.land/[email protected]/fs/exists.ts"
import { join } from "https://deno.land/[email protected]/path/posix.ts"
import { createUpBases } from "https://deno.land/x/[email protected].5/src/path.ts"
import { createUpBases } from "https://deno.land/x/[email protected].6/src/path.ts"

export function existsFile(path: string) {
return exists(path, {
Expand Down
2 changes: 1 addition & 1 deletion src/pm.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { PM } from "./constant.ts"
import { execa } from "https://deno.land/x/[email protected].5/src/process.ts"
import { execa } from "https://deno.land/x/[email protected].6/src/process.ts"

export async function getPackageCommands() {
try {
Expand Down

0 comments on commit 80ec9e8

Please sign in to comment.