diff options
author | Alexander Early <alexander.early@gmail.com> | 2018-06-03 14:07:30 -0700 |
---|---|---|
committer | Alexander Early <alexander.early@gmail.com> | 2018-06-03 14:07:30 -0700 |
commit | 7f05f5c1d982d610f7535ed285e4c5ffa536f5d3 (patch) | |
tree | 177792e87cab1efdde3cefdc077f41afe4a4b9ee /Makefile | |
parent | 3015ce6f1674f917e8eeec29c263686bfbcf7a6e (diff) | |
download | async-7f05f5c1d982d610f7535ed285e4c5ffa536f5d3.tar.gz |
clean up debugging
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,9 +1,7 @@ -# This makefile is meant to be run on OSX/Linux. Make sure any artifacts +# This makefile is meant to be run on OSX/Linux. Make sure any dist/ artifacts # created here are checked in so people on all platforms can run npm scripts. # This build should be run once per release. -OLD_VARS := $(.VARIABLES) - SHELL=/bin/bash export PATH := ./node_modules/.bin/:$(PATH):./bin/ @@ -49,8 +47,6 @@ $(A): $$(SRC_$(A)) endef $(foreach A,$(ALIAS_ES),$(eval $(COPY_ES_ALIAS))) -$(foreach V,$(filter-out $(OLD_VARS), $(.VARIABLES)), $(info $(V): $($(V)))) - all: clean lint build test test: |