mirror of
https://github.com/OliveTin/OliveTin
synced 2026-08-25 12:06:28 +00:00
25 lines
349 B
Makefile
25 lines
349 B
Makefile
define delete-files
|
|
python -c "import shutil;shutil.rmtree('$(1)', ignore_errors=True)"
|
|
endef
|
|
|
|
codestyle:
|
|
npm install
|
|
npx eslint --fix main.js js/* resources/vue
|
|
npx stylelint style.css
|
|
|
|
unittests: deps
|
|
npm test
|
|
|
|
clean:
|
|
$(call delete-files,dist)
|
|
|
|
deps:
|
|
npm install
|
|
|
|
build:
|
|
npx vite build
|
|
|
|
dist: deps clean build
|
|
|
|
.PHONY: codestyle unittests
|