Skip to content

Commit 66ded98

Browse files
committed
fix lint
1 parent 9e4d436 commit 66ded98

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

deno.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828
"@std/tar": "jsr:@std/tar@^0.1.8",
2929
"@trpc/client": "npm:@trpc/client@^11.0.2",
3030
"@trpc/server": "npm:@trpc/server@^11.0.2",
31+
"@types/prompts": "npm:@types/prompts@2.4.9",
3132
"event-source-polyfill": "npm:event-source-polyfill@^1.0.31",
3233
"jsonc-parser": "npm:jsonc-parser@^3.3.1",
3334
"open": "npm:open@^10.1.0",
35+
"prompts": "npm:prompts@2.4.2",
3436
"superjson": "npm:superjson@^2.2.2",
3537
"@deno/framework-detect": "jsr:@deno/framework-detect@^0",
3638
"temporal-polyfill": "npm:temporal-polyfill@^0.3.0"

deno.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Command } from "jsr:@cliffy/command@^1.0.0-rc.8";
1+
import { Command } from "@cliffy/command";
22
import { publish } from "./publish.ts";
33
import { red, yellow } from "@std/fmt/colors";
44
import { greaterOrEqual, parse as semverParse } from "@std/semver";

setup-cloud.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// @ts-types="npm:@types/prompts@2.4.9"
2-
import prompt from "npm:prompts@2.4.2";
1+
// @ts-types="@types/prompts"
2+
import prompt from "prompts";
33

44
import { gray, green, yellow } from "@std/fmt/colors";
55
import { createTrpcClient } from "./auth.ts";

0 commit comments

Comments
 (0)