1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-10-04 12:14:19 +02:00
foris-js/Makefile

53 lines
1.1 KiB
Makefile
Raw Normal View History

2019-10-07 16:43:57 +02:00
.PHONY: all install-js watch-js build-js lint-js test-js create-messages update-messages docs clean
all:
2019-09-10 10:30:42 +02:00
@echo "make install-js"
@echo " Install dependencies"
@echo "make watch-js"
@echo " Compile JS in watch mode."
@echo "make build-js"
@echo " Compile JS."
@echo "make lint-js"
@echo " Run linter"
@echo "make test-js"
@echo " Run tests"
@echo "make create-messages"
@echo " Create locale messages (.pot)."
@echo "make update-messages"
@echo " Update locale messages from .pot file."
2019-09-25 15:43:37 +02:00
@echo "make docs"
@echo " Build project documentation."
@echo "make docs-watch"
@echo " Start styleguidist server."
@echo "make clean"
@echo " Remove python artifacts and virtualenv."
2019-09-10 10:30:42 +02:00
install-js: package.json
npm install --save-dev
watch-js:
2019-10-01 11:38:18 +02:00
npm run build:watch
2019-09-10 10:30:42 +02:00
build-js:
npm run build
2019-09-25 13:56:08 +02:00
lint:
2019-09-10 10:30:42 +02:00
npm run lint
2019-09-25 13:56:08 +02:00
test:
2019-09-10 10:30:42 +02:00
npm test
2019-10-24 10:12:39 +02:00
test-js-update-snapshots:
npm test -- -u
2019-09-10 10:30:42 +02:00
create-messages:
pybabel extract -F babel.cfg -o ./translations/forisjs.pot .
update-messages:
pybabel update -i translations/forisjs.pot -d translations
2019-09-25 15:43:37 +02:00
docs:
npm run-script docs
docs-watch:
npm run-script docs:watch
clean:
rm -rf node_modules dist