File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export GIT_COMMIT = $(shell git rev-parse --short HEAD)
99export URL_PREFIX = /admin
1010WEBPACK_PORT = 4001
1111
12+ .PHONY : notify
1213notify :
1314 $(call header, $(MSG ) )
1415
@@ -57,8 +58,12 @@ clean:
5758test : MSG=Testing
5859test : 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
6469mocha-spec :
@@ -98,6 +103,7 @@ fmt-%:
98103
99104.PHONY : build-styleguide
100105build-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
110116install 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
134141build-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
You can’t perform that action at this time.
0 commit comments