From fc32690edd223fd01054c625d9c6dca01bd99e67 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Tue, 5 Nov 2024 03:53:41 +1000 Subject: [PATCH] Remove unused makefile targets (#1388) ### What Remove the watch and watch-doc makefile targets. ### Why They're not used. Cargo watch is also deprecated and the author recommends using other tools. --- Makefile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Makefile b/Makefile index f21ac1d9..62f396f4 100644 --- a/Makefile +++ b/Makefile @@ -35,20 +35,8 @@ readme: | jq -r '.index[.root|tostring].docs' \ > README.md -watch: - cargo watch --clear --watch-when-idle --shell '$(MAKE)' - -watch-doc: - cargo +nightly-2024-10-10 watch --clear --watch-when-idle --shell '$(MAKE) doc CARGO_DOC_ARGS=' - fmt: cargo fmt --all clean: cargo clean - -bump-version: - cargo workspaces version --all --force '*' --no-git-commit --yes custom $(VERSION) - -publish: - cargo workspaces publish --all --force '*' --from-git --yes