1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-24 16:36:46 +00:00
bramw_baserow/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/web-frontend/Makefile
2023-04-28 13:00:32 +02:00

17 lines
214 B
Makefile

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