Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: populate brief for all live playground examples #35

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with homogenous positional parameters",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with boolean flag",
customUsage: [
"--quiet",
"--quiet=yes",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with bounded positional parameters",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with counter flag",
customUsage: [
"--verbose",
"-v",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with flag configured with default value",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with positional parameter configured with default value",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ export const root = buildCommand({
},
},
docs: {
brief: ""
brief: "Example for live playground with enum flag"
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export const root = buildCommand({
},
},
docs: {
brief: ""
brief: "Example for live playground with hidden flag"
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with optional flag",
customUsage: [
"",
"--limit 1000",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with optional positional parameter",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with parsed flags",
customUsage: [
"--item apple --price 1",
"--item orange --price 3.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with positional parameters",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with variadic flag",
customUsage: [
"--id 10",
"--id 10 --id 20 --id 30",
Expand Down