forked from getsentry/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
48 lines (39 loc) · 1.53 KB
/
Makefile
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
VERSION=2.0.0
GLOBAL_CSS = sentry/static/styles/global.css
GLOBAL_CSS_MIN = sentry/static/styles/global.min.css
BOOTSTRAP_JS = sentry/static/scripts/bootstrap.js
BOOTSTRAP_JS_MIN = sentry/static/scripts/bootstrap.min.js
GLOBAL_JS = sentry/static/scripts/global.js
GLOBAL_JS_MIN = sentry/static/scripts/global.min.js
BOOTSTRAP_LESS = bootstrap/sentry.less
LESS_COMPRESSOR ?= `which lessc`
UGLIFY_JS ?= `which uglifyjs`
WATCHR ?= `which watchr`
build: static locale
#
# Compile language files
#
locale:
cd sentry && sentry makemessages -l en
cd sentry && sentry compilemessages
#
# Build less files
#
static:
lessc ${BOOTSTRAP_LESS} > ${GLOBAL_CSS};
lessc ${BOOTSTRAP_LESS} > ${GLOBAL_CSS_MIN} --compress;
cat sentry/static/scripts/sentry.core.js sentry/static/scripts/sentry.realtime.js sentry/static/scripts/sentry.charts.js sentry/static/scripts/sentry.notifications.js sentry/static/scripts/sentry.stream.js > ${GLOBAL_JS};
cat bootstrap/js/bootstrap-alert.js bootstrap/js/bootstrap-dropdown.js bootstrap/js/bootstrap-tooltip.js bootstrap/js/bootstrap-tab.js bootstrap/js/bootstrap-buttons.js bootstrap/js/bootstrap-modal.js > ${BOOTSTRAP_JS};
uglifyjs -nc ${GLOBAL_JS} > ${GLOBAL_JS_MIN};
uglifyjs -nc ${BOOTSTRAP_JS} > ${BOOTSTRAP_JS_MIN};
echo "Static assets successfully built! - `date`";
#
# Watch less files
#
watch:
echo "Watching less files..."; \
watchr -e "watch('bootstrap/less/.*\.less') { system 'make' }"
test:
coverage run runtests.py --include=sentry/* && \
coverage html --omit=*/migrations/* -d cover
.PHONY: build watch