From e41efc969d9972278a4fc30055b2a5e6d4847d8d Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 24 Feb 2026 10:15:01 +0700 Subject: [PATCH] Use make targets exclusively in Getting Started Add make install target wrapping yarn install. The Makefile is the authoritative interface for all repo operations. --- Makefile | 5 ++++- README.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bfa24d8..ff9ffe8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -.PHONY: test lint fmt fmt-check check docker hooks build clean dev +.PHONY: install test lint fmt fmt-check check docker hooks build clean dev + +install: + @yarn install test: @echo "Running tests..." diff --git a/README.md b/README.md index f327059..eece3fe 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ connection and authentication via the EIP-1193 provider API. ```bash git clone https://git.eeqj.de/sneak/autistmask.git cd autistmask -yarn install +make install make build ```