w-aura/Makefile
Aidar Shaikhutdin @makeweb.space 3b52ed4989 Base markup has been added
2023-05-02 19:05:24 +06:00

37 lines
465 B
Makefile

install:
npm ci
install-local:
npm install
start:
npm run dev -- --host
build:
npm run build
preview:
npm run preview
test:
npx jest
test-coverage:
npx jest --coverage --coverageProvider=v8
test-watch:
npx jest --watch
lint:
npx eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0
clean:
rm -rf ./node_modules
rm -rf ./*/*/build
rm -rf ./*/*/coverage
rm -rf ./*/*/node_modules
reset: clean install-local
.PHONY: test