Skip to content

Commit

Permalink
[skyapi] refs fibercrypto#12 - Remove axios client related files
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevCbermudez committed Apr 12, 2019
1 parent b7bbfae commit ca97c30
Show file tree
Hide file tree
Showing 5 changed files with 795 additions and 1,130 deletions.
14 changes: 3 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
.DEFAULT_GOAL := help
.PHONY: install test test-node-client build-node-client build-node-tester

help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

install: build-axios-client build-axios-tester build-node-client build-node-tester ; ## Build all libraries and tester
install: build-node-client build-node-tester ; ## Build all libraries and tester

test: test-axios-client test-node-client ; ## Test all clients

test-axios-client: ## Test axios client
(cd ./tests/axios/ && npm run test )
test: test-node-client ; ## Test all clients

test-node-client: ## Test node client
(cd ./tests/node/ && npm run test )

build-axios-client: ## Build axios client
(cd ./lib/skyapi/axios/ && npm install && npm run build)

build-axios-tester: ## Build axios client tester
(cd ./tests/axios/ && npm install)

build-node-client: ## Build node client
(cd './lib/skyapi/node/' && npm install && npm run build)

Expand Down
Loading

0 comments on commit ca97c30

Please sign in to comment.