From 508da0897f256786ed1b45b00f576d39b2dd753f Mon Sep 17 00:00:00 2001 From: Nicolas Date: Tue, 31 Mar 2026 14:18:18 +0200 Subject: [PATCH] Add watch-sqlite target to Makefile for SQLite testing --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 824bfac10c..0c10f6cfbb 100644 --- a/Makefile +++ b/Makefile @@ -379,6 +379,10 @@ lint-json-fix: node_modules ## lint and fix json files watch: ## watch everything and continuously rebuild @bash tools/watch.sh +.PHONY: watch-sqlite +watch-sqlite: ## watch and use sqlite for testing + @TAGS="sqlite sqlite_unlock_notify" $(MAKE) watch + .PHONY: watch-frontend watch-frontend: node_modules ## start vite dev server for frontend NODE_ENV=development $(NODE_VARS) pnpm exec vite