Files
mattermost/webapp/Makefile
2016-03-16 18:02:55 -04:00

19 lines
249 B
Makefile

.PHONY: build test
test:
@echo Checking for style guide compliance
npm run check
.npminstall: package.json
@echo Getting dependencies using npm
npm install
touch $@
build: .npminstall
@echo Building mattermost web client
npm run build