summaryrefslogtreecommitdiffstats
path: root/webapp/Makefile
blob: 99f896e53cddc0863903e6825ceb9e4ec158f479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.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