memories/Makefile

49 lines
543 B
Makefile
Raw Normal View History

2022-08-14 20:54:18 +00:00
all: dev-setup lint build-js-production test
# Dev env management
2022-10-20 20:45:00 +00:00
dev-setup: clean clean-dev npm-init get-exiftool
get-exiftool:
2022-10-20 20:47:33 +00:00
sh scripts/get-exiftool.sh
2022-08-14 20:54:18 +00:00
npm-init:
npm ci
npm-update:
npm update
# Building
build-js:
npm run dev
build-js-production:
2022-09-13 23:05:58 +00:00
rm -f js/* && npm run build
2022-08-13 01:58:37 +00:00
2022-08-14 20:54:18 +00:00
watch-js:
npm run watch
# Testing
test:
npm run test
test-watch:
npm run test:watch
test-coverage:
npm run test:coverage
# Linting
lint:
npm run lint
lint-fix:
npm run lint:fix
# Cleaning
2022-08-13 01:58:37 +00:00
clean:
2022-08-14 20:54:18 +00:00
rm -f js/*
2022-08-13 01:58:37 +00:00
2022-08-14 20:54:18 +00:00
clean-dev:
2022-08-13 01:58:37 +00:00
rm -rf node_modules
2022-08-14 20:54:18 +00:00