1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-06 05:40:09 +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
No EOL
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