1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-30 18:36:29 +00:00
bramw_baserow/web-frontend/Makefile
2019-10-13 11:29:00 +00:00

15 lines
179 B
Makefile

install-dependencies:
yarn install
eslint:
yarn run eslint || exit;
stylelint:
yarn run stylelint || exit;
lint: eslint stylelint
jest:
yarn run jest || exit;
test: jest