Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
markthree committed Dec 18, 2023
1 parent 6ee08d4 commit ec8843e
Show file tree
Hide file tree
Showing 6 changed files with 146 additions and 13 deletions.
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"tasks": {
"start": "deno run -A mod.ts",
"release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/[email protected].0/scripts/release.ts",
"release": "deno run --allow-read --allow-write --allow-env --allow-run https://deno.land/x/[email protected].1/scripts/release.ts",
"install": "deno install --allow-read --allow-env --allow-run --allow-write --unstable -rfn n mod.ts"
},
"fmt": {
Expand Down
133 changes: 133 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import {
brightYellow,
gray,
yellow,
} from "https://deno.land/std@0.208.0/fmt/colors.ts"
import { ensureFile } from "https://deno.land/std@0.208.0/fs/ensure_file.ts"
} from "https://deno.land/std@0.209.0/fmt/colors.ts"
import { ensureFile } from "https://deno.land/std@0.209.0/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].0/src/process.ts"
import { execa } from "https://deno.land/x/[email protected].1/src/process.ts"

import paramCase from "https://deno.land/x/[email protected]/paramCase.ts"
import { cacheDirs, locks, type PM, pms } from "./constant.ts"
Expand Down
10 changes: 5 additions & 5 deletions src/fs.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { logClean } from "./log.ts"
import { denoConfigFiles } from "./constant.ts"
import { join } from "https://deno.land/std@0.208.0/path/mod.ts"
import { exists } from "https://deno.land/std@0.208.0/fs/exists.ts"
import { resolve } from "https://deno.land/std@0.208.0/path/resolve.ts"
import { emptyDir } from "https://deno.land/std@0.208.0/fs/empty_dir.ts"
import { createUpBases } from "https://deno.land/x/[email protected].0/src/path.ts"
import { join } from "https://deno.land/std@0.209.0/path/mod.ts"
import { exists } from "https://deno.land/std@0.209.0/fs/exists.ts"
import { resolve } from "https://deno.land/std@0.209.0/path/resolve.ts"
import { emptyDir } from "https://deno.land/std@0.209.0/fs/empty_dir.ts"
import { createUpBases } from "https://deno.land/x/[email protected].1/src/path.ts"

export function existsFile(path: string) {
return exists(path, {
Expand Down
Loading

0 comments on commit ec8843e

Please sign in to comment.