diff options
| author | Shulhan <ms@kilabit.info> | 2025-06-30 00:36:53 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-06-30 00:36:53 +0700 |
| commit | 69ffa37447a550697f54dc716880888f9d945713 (patch) | |
| tree | b703763d1f2e95da0c1c3eda37af744927e9e6a5 | |
| parent | bb80d8d7d505af6f899123a46558cef662cf413e (diff) | |
| download | gorankusu-69ffa37447a550697f54dc716880888f9d945713.tar.xz | |
make: run eslint from node_modules/.bin directory directly
Using npx does not guarantee works on system installed nodejs.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
