diff --git a/tldr/go-test b/tldr/go-test index a9a82d6b..f05c7fe2 100644 --- a/tldr/go-test +++ b/tldr/go-test @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # go test > Tests Go packages (files have to end with `_test.go`). -> More information: . +> More information: . - Test the package found in the current directory: diff --git a/tldr/hatch b/tldr/hatch new file mode 100644 index 00000000..c7307673 --- /dev/null +++ b/tldr/hatch @@ -0,0 +1,34 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# hatch + +> Modern, extensible Python project manager. +> See also: `poetry`. +> More information: . + +- Create a new Hatch project: + +`hatch new {{project_name}}` + +- Initialize Hatch for an existing project: + +`hatch new --init` + +- Build a Hatch project: + +`hatch build` + +- Remove build artifacts: + +`hatch clean` + +- Create a default environment with dependencies defined in the `pyproject.toml` file: + +`hatch env create` + +- Show environment dependencies as a table: + +`hatch dep show table` diff --git a/tldr/npm-author b/tldr/npm-author new file mode 100644 index 00000000..179a9086 --- /dev/null +++ b/tldr/npm-author @@ -0,0 +1,12 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# npm-author + +> This command is an alias of `npm owner`. + +- View documentation for the original command: + +`tldr npm owner` diff --git a/tldr/npm-owner b/tldr/npm-owner new file mode 100644 index 00000000..4adaab8b --- /dev/null +++ b/tldr/npm-owner @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# npm-owner + +> Manage ownership of published packages. +> More information: . + +- Add a new user as a maintainer of a package: + +`npm owner add {{username}} {{package_name}}` + +- Remove a user from a package's owner list: + +`npm owner rm {{username}} {{package_name}}` + +- List all owners of a package: + +`npm owner ls {{package_name}}` diff --git a/tldr/stripe b/tldr/stripe index 45a19b12..01918790 100644 --- a/tldr/stripe +++ b/tldr/stripe @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # stripe > Interact with a Stripe account. -> More information: . +> More information: . - Follow the logs of activity on the account: diff --git a/tldr/terraform-plan b/tldr/terraform-plan index 51a3a422..55627f2c 100644 --- a/tldr/terraform-plan +++ b/tldr/terraform-plan @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # terraform plan > Generate and show Terraform execution plans. -> More information: . +> More information: . - Generate and show the execution plan in the currently directory: