-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into merging-main-to-v3-de…
…v-main
- Loading branch information
Showing
86 changed files
with
12,240 additions
and
2,484 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
*.coverprofile | ||
*.orig | ||
node_modules/ | ||
vendor | ||
.idea | ||
internal/*/built-example | ||
coverage.txt | ||
/.local/ | ||
/site/ | ||
|
||
*.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# NOTE: this Makefile is meant to provide a simplified entry point for humans to | ||
# run all of the critical steps to verify one's changes are harmonious in | ||
# nature. Keeping target bodies to one line each and abstaining from make magic | ||
# are very important so that maintainers and contributors can focus their | ||
# attention on files that are primarily Go. | ||
|
||
.PHONY: all | ||
all: generate vet tag-test test check-binary-size tag-check-binary-size gfmrun v2diff | ||
|
||
# NOTE: this is a special catch-all rule to run any of the commands | ||
# defined in internal/build/build.go with optional arguments passed | ||
# via GFLAGS (global flags) and FLAGS (command-specific flags), e.g.: | ||
# | ||
# $ make test GFLAGS='--packages cli' | ||
%: | ||
go run internal/build/build.go $(GFLAGS) $* $(FLAGS) | ||
|
||
.PHONY: tag-test | ||
tag-test: | ||
go run internal/build/build.go -tags urfave_cli_no_docs test | ||
|
||
.PHONY: tag-check-binary-size | ||
tag-check-binary-size: | ||
go run internal/build/build.go -tags urfave_cli_no_docs check-binary-size | ||
|
||
.PHONY: gfmrun | ||
gfmrun: | ||
go run internal/build/build.go gfmrun docs/v2/manual.md | ||
|
||
.PHONY: docs | ||
docs: | ||
mkdocs build | ||
|
||
.PHONY: docs-deps | ||
docs-deps: | ||
pip install -r mkdocs-requirements.txt | ||
|
||
.PHONY: serve-docs | ||
serve-docs: | ||
mkdocs serve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.