2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/includes/raven-js/Makefile
Raphaël Doursenaud a6ef289470 New Added client-side Sentry logging
Using Raven.js allows logging client-side javascript errors to the
configured Sentry server.
2015-09-04 19:10:46 +02:00

21 lines
283 B
Makefile

develop: update-submodules
npm install .
update-submodules:
git submodule init
git submodule update
docs:
cd docs; $(MAKE) html
docs-live:
while true; do \
sleep 2; \
$(MAKE) docs; \
done
clean:
rm -rf docs/html
.PHONY: develop update-submodules docs docs-live clean