Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/cli/cli-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
"@types/jsonwebtoken": "catalog:",
"@types/mime-types": "catalog:",
"@types/node": "catalog:",
"@types/pngjs": "catalog:",
"@types/semver": "catalog:",
"@types/uuid": "^9.0.7",
"@types/yargs": "^17.0.28",
Expand All @@ -107,7 +108,9 @@
"json-stream-stringify": "catalog:",
"jsonwebtoken": "catalog:",
"ora": "catalog:",
"pngjs": "catalog:",
"posthog-node": "^5.28.6",
"puppeteer": "catalog:",
"semver": "^7.6.2",
"tsup": "catalog:",
"typescript": "catalog:",
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/cli-v2/src/commands/docs/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import type { GlobalArgs } from "../../context/GlobalArgs.js";
import { commandGroup } from "../_internal/commandGroup.js";
import { addCheckCommand } from "./check/index.js";
import { addDevCommand } from "./dev/index.js";
import { addDiffCommand } from "./diff/index.js";
import { addLinkCommand } from "./link/index.js";
import { addMdCommand } from "./md/index.js";
import { addPreviewCommand } from "./preview/index.js";
Expand All @@ -16,6 +17,7 @@ export function addDocsCommand(cli: Argv<GlobalArgs>): void {
subcommands: [
addCheckCommand,
addDevCommand,
addDiffCommand,
addLinkCommand,
addMdCommand,
addPreviewCommand,
Expand Down
Loading