mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
19 lines
249 B
Makefile
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
|