HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/dev/nowruzgan/rest/node_modules/generic-pool/Makefile
.PHONY: all clean install check test lint-install lint

INCOMPATIBLE_ESLINT_VERSIONS=$(shell node --version | egrep 'v0.[2-9]' | cut -d '.' -f 1-2)

all:

clean:
	rm -rf node_modules

install:
	npm install

check:
	npm test

test:
	npm test

lint-install:
ifeq ($(INCOMPATIBLE_ESLINT_VERSIONS),)
	npm run lint-install
else
	@echo "Lint not available on $(INCOMPATIBLE_ESLINT_VERSIONS)"
endif

lint:
ifeq ($(INCOMPATIBLE_ESLINT_VERSIONS),)
	npm run lint
else
	@echo "Lint not available on $(INCOMPATIBLE_ESLINT_VERSIONS)"
endif