Skip to content

Commit aa0e493

Browse files
committed
Update Cliffy to 1.0.0-rc.8 in CLI package
Upgraded @cliffy packages from 1.0.0-rc.4 to 1.0.0-rc.8 to address compatibility issues with newer Deno runtime. Updated import paths for CompletionsCommand and HelpCommand to use their new submodule locations, and standardized @std/fmt dependency version.
1 parent 8e954cc commit aa0e493

File tree

3 files changed

+60
-73
lines changed

3 files changed

+60
-73
lines changed

deno.lock

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

packages/cli/deno.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"imports": {
7-
"@cliffy/ansi": "jsr:@cliffy/[email protected].4",
8-
"@cliffy/command": "jsr:@cliffy/[email protected].4",
9-
"@cliffy/prompt": "jsr:@cliffy/[email protected].4",
10-
"@cliffy/table": "jsr:@cliffy/[email protected].4",
7+
"@cliffy/ansi": "jsr:@cliffy/[email protected].8",
8+
"@cliffy/command": "jsr:@cliffy/[email protected].8",
9+
"@cliffy/prompt": "jsr:@cliffy/[email protected].8",
10+
"@cliffy/table": "jsr:@cliffy/[email protected].8",
1111
"@cross/dir": "jsr:@cross/dir@^1.1.0",
1212
"@hongminhee/localtunnel": "npm:@hongminhee/localtunnel@^0.3.0",
1313
"@jimp/core": "npm:@jimp/core@^1.6.0",
1414
"@jimp/wasm-webp": "npm:@jimp/wasm-webp@^1.6.0",
1515
"@poppanator/http-constants": "npm:@poppanator/http-constants@^1.1.1",
1616
"@std/assert": "jsr:@std/assert@^1.0.13",
17-
"@std/fmt/colors": "jsr:@std/fmt@^0.224.0/colors",
17+
"@std/fmt": "jsr:@std/fmt@^1.0.8",
1818
"@std/testing": "jsr:@std/testing@^1.0.8",
1919
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
2020
"@std/semver": "jsr:@std/semver@^1.0.5",

packages/cli/src/mod.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { Command, CompletionsCommand, HelpCommand } from "@cliffy/command";
1+
import { Command } from "@cliffy/command";
2+
import { CompletionsCommand } from "@cliffy/command/completions";
3+
import { HelpCommand } from "@cliffy/command/help";
24
import { getFileSink } from "@logtape/file";
35
import { configure, getConsoleSink } from "@logtape/logtape";
46
import { setColorEnabled } from "@std/fmt/colors";

0 commit comments

Comments
 (0)