summaryrefslogtreecommitdiffstats
path: root/webapp/Makefile
blob: 8bb7a83d14ffcb80af0082134bbbd544c419f3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.PHONY: build test run clean stop check-style run-unit emojis

BUILD_SERVER_DIR = ..

check-style: .yarninstall
	@echo Checking for style guide compliance

	yarn run check

test: .yarninstall
	cd $(BUILD_SERVER_DIR) && $(MAKE) internal-test-web-client

.yarninstall: package.json
	@echo Getting dependencies using yarn

	yarn install

	touch $@

build: .yarninstall
	@echo Building mattermost Webapp

	rm -rf dist

	yarn run build

run: .yarninstall
	@echo Running mattermost Webapp for development

	yarn run run &

run-fullmap: .yarninstall
	@echo FULL SOURCE MAP Running mattermost Webapp for development FULL SOURCE MAP

	yarn run run-fullmap &

stop:
	@echo Stopping changes watching

ifeq ($(OS),Windows_NT)
	wmic process where "Caption='node.exe' and CommandLine like '%webpack%'" call terminate
else
	@for PROCID in $$(ps -ef | grep "[n]ode.*[w]ebpack" | awk '{ print $$2 }'); do \
		echo stopping webpack watch $$PROCID; \
		kill $$PROCID; \
	done
endif

clean:
	@echo Cleaning Webapp

	yarn cache clean

	rm -rf dist
	rm -rf node_modules
	rm -f .yarninstall

emojis:
	./make-emojis