Cleaning up make test-client. Adding to build. (#2984)

Этот коммит содержится в:
Christopher Speller
2016-05-13 16:17:07 -04:00
родитель 39b520e38e
Коммит 587ddde587
7 изменённых файлов: 87 добавлений и 157 удалений

Просмотреть файл

@@ -1,10 +1,15 @@
.PHONY: build test run clean stop
.PHONY: build test run clean stop check-style run-unit
test: .npminstall
BUILD_SERVER_DIR = ..
check-style: .npminstall
@echo Checking for style guide compliance
npm run check
test: .npminstall
cd $(BUILD_SERVER_DIR) && $(MAKE) internal-test-client
.npminstall: package.json
@echo Getting dependencies using npm
@@ -12,7 +17,7 @@ test: .npminstall
touch $@
build: | .npminstall test
build: .npminstall
@echo Building mattermost Webapp
npm run build