Skip to content

Commit eb9dfdb

Browse files
authored
chore: fix ci (#19)
1 parent 311a132 commit eb9dfdb

4 files changed

Lines changed: 16 additions & 12 deletions

File tree

deno.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "@deno/deploy",
77
"license": "MIT",
88
"tasks": {
9-
"build": "deno run -A jsr:@deno/wasmbuild@0.19"
9+
"build": "deno run -A jsr:@deno/wasmbuild@0.19.2"
1010
},
1111
"publish": {
1212
"exclude": [
@@ -25,12 +25,14 @@
2525
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
2626
"@std/path": "jsr:@std/path@^1.0.8",
2727
"@std/semver": "jsr:@std/semver@^1.0.5",
28-
"@std/tar": "jsr:@std/tar@^0.1.7",
28+
"@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: 9 additions & 7 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)