diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e4baa4d..70bd247 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,11 +12,10 @@ ```console > nix develop (prepared bash) -> dprint --version +> task help +task: [help] task --list-all +task: Available tasks for this project: +* bench: +* check: ... ``` - -## Note for develop - -Map index in pipe: https://github.com/PowerShell/PowerShell/issues/13772 -Formatte, but not CLI - https://github.com/PowerShell/PSScriptAnalyzer diff --git a/Taskfile.yml b/Taskfile.yml index d93c723..7cc2a2a 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -34,6 +34,12 @@ tasks: setup: cmds: - pwsh -File ./tools/setup.ps1 + bench: + cmds: + - pwsh -File ./tools/benchmark.ps1 deps: cmds: - pwsh -File ./tools/deps.ps1 + help: + cmds: + - task --list-all