Skip to content

Commit 4ef4606

Browse files
committed
test
1 parent 4ed3ee7 commit 4ef4606

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

ashes/Makefile

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export GIT_COMMIT = $(shell git rev-parse --short HEAD)
99
export URL_PREFIX = /admin
1010
WEBPACK_PORT = 4001
1111

12+
.PHONY: notify
1213
notify:
1314
$(call header, $(MSG))
1415

@@ -57,8 +58,12 @@ clean:
5758
test: MSG=Testing
5859
test: notify
5960

61+
.PHONY: notify-check
62+
notify-check:
63+
MSG=Checking make notify
64+
6065
.PHONY: check t
61-
check t: flow lint mocha
66+
check t: notify-check flow lint mocha
6267

6368
.PHONY: mocha-spec
6469
mocha-spec:
@@ -98,6 +103,7 @@ fmt-%:
98103

99104
.PHONY: build-styleguide
100105
build-styleguide:
106+
MSG="Building Styleguilde" make notify
101107
styleguidist build --config styleguide/config.styleguide.js
102108

103109
.PHONY: styleguide sg
@@ -108,6 +114,7 @@ styleguide sg:
108114

109115
.PHONY: install i
110116
install i:
117+
MSG=Installing make notify
111118
rm -rf ./node_modules
112119
yarn cache clean
113120
yarn --pure-lockfile
@@ -132,6 +139,7 @@ dev d:
132139

133140
.PHONY: build-prod
134141
build-prod:
142+
MSG="Building Application" make notify
135143
NODE_ENV=production webpack --progress
136144

137145
.PHONY: prod p
@@ -141,5 +149,4 @@ prod p: clean build-prod
141149
# Buildkite ###
142150

143151
.PHONY: build
144-
build: MSG=Building
145-
build: notify clean install check build-styleguide build-prod
152+
build: clean install check build-styleguide build-prod

0 commit comments

Comments
 (0)