memories/Makefile

60 lines
840 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 21:04:15 +00:00
dev-setup: clean clean-dev npm-init exiftool php-cs-fixer
2022-10-20 20:45:00 +00:00
2022-10-20 21:04:15 +00:00
exiftool:
2022-10-20 20:47:33 +00:00
sh scripts/get-exiftool.sh
2022-08-14 20:54:18 +00:00
2022-10-20 21:04:15 +00:00
php-cs-fixer:
mkdir --parents tools/php-cs-fixer
composer require --working-dir=tools/php-cs-fixer friendsofphp/php-cs-fixer
php-lint:
tools/php-cs-fixer/vendor/bin/php-cs-fixer fix lib
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-10-29 23:16:13 +00:00
patch-external:
2022-11-12 08:51:45 +00:00
patch -p1 < patches/scroller-perf.patch
patch -p1 < patches/scroller-sticky.patch
2022-10-29 23:16:13 +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