From 69ffa37447a550697f54dc716880888f9d945713 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Mon, 30 Jun 2025 00:36:53 +0700 Subject: make: run eslint from node_modules/.bin directory directly Using npx does not guarantee works on system installed nodejs. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 74db21e..70a91b0 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ lint: lint-www .PHONY: lint-www lint-www: - cd _www && npx eslint --fix . + cd _www && ./node_modules/.bin/eslint . .PHONY: test test: -- cgit v1.3