remove needless command aliases in makefile

This commit is contained in:
Josh Junon 2018-09-10 23:11:33 -06:00 committed by Qix
parent 623c08ef73
commit 9f4f8f59ba

View File

@ -10,10 +10,7 @@ PATH := node_modules/.bin:$(PATH)
SHELL := /bin/bash
# applications
NODE ?= $(shell which node)
YARN ?= $(shell which yarn)
PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm))
BROWSERIFY ?= $(NODE) $(BIN)/browserify
BROWSERIFY ?= $(BIN)/browserify
all: lint test