Skip to content

v1.5.0 #719

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

Merged
merged 1 commit into from
Nov 25, 2019
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
5 changes: 0 additions & 5 deletions helper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,9 @@ leetcode is a tool for managing leetcode source code.
Usage:
leetcode <command> [arguments]
The commands are:
readme build README.md file
page build index.md file
tag build all tags file
helper build helper file
question build problem solution file
open open a problem solution in browser
test run go test
description build all problems description file
update update or upgrade self
clean remove cached files
version print leetcode version
Expand Down
1 change: 1 addition & 0 deletions internal/description/description.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var CmdDescription = &base.Command{
UsageLine: "description",
Short: "build all problems description file",
Long: "build all problems README.md file.",
Hidden: true,
}

func runDescription(cmd *base.Command, args []string) {
Expand Down
1 change: 1 addition & 0 deletions internal/helper/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ var CmdHelper = &base.Command{
UsageLine: "helper",
Short: "build helper file",
Long: "build helper README.md file.",
Hidden: true,
}

func runHelper(cmd *base.Command, args []string) {
Expand Down
1 change: 1 addition & 0 deletions internal/page/page.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var CmdPage = &base.Command{
UsageLine: "page",
Short: "build index.md file",
Long: "build page file(index.md).",
Hidden: true,
}

func runPage(cmd *base.Command, args []string) {
Expand Down
1 change: 1 addition & 0 deletions internal/readme/readme.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ var CmdReadme = &base.Command{
UsageLine: "readme",
Short: "build README.md file",
Long: "build README.md file.",
Hidden: true,
}

var (
Expand Down
1 change: 1 addition & 0 deletions internal/tag/tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var CmdTag = &base.Command{
UsageLine: "tag",
Short: "build all tags file",
Long: "build all tags README.md file.",
Hidden: true,
}

func runTag(cmd *base.Command, args []string) {
Expand Down