memories/Makefile

73 lines
1.1 KiB
Makefile
Raw Normal View History

2022-08-14 20:54:18 +00:00
all: dev-setup lint build-js-production test
# Dev env management
dev-setup: clean clean-dev npm-init bin-ext install-tools
2022-10-20 20:45:00 +00:00
bin-ext:
sh scripts/get-bin-ext.sh
2022-08-14 20:54:18 +00:00
install-tools:
2023-10-14 09:13:34 +00:00
composer install
2022-10-20 21:04:15 +00:00
php-lint:
vendor/bin/php-cs-fixer fix
psalm:
vendor/bin/psalm --no-cache
2022-10-20 21:04:15 +00:00
2022-08-14 20:54:18 +00:00
npm-init:
npm ci
npm-update:
npm update
.PHONY: dev-setup bin-ext install-tools php-lint psalm npm-init npm-update
2022-08-14 20:54:18 +00:00
# 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:
patch -p1 -N < patches/scroller-perf.patch || true
patch -p1 -N < patches/scroller-sticky.patch || true
patch -p1 -N < patches/plyr-wrap.patch || true
patch -p1 -N < patches/videojs-vhs-1439.patch || true
2022-10-29 23:16:13 +00:00
2022-08-14 20:54:18 +00:00
watch-js:
npm run watch
.PHONY: build-js patch-external watch-js
2022-08-14 20:54:18 +00:00
# Testing
test:
npm run test
test-watch:
npm run test:watch
test-coverage:
npm run test:coverage
.PHONY: test test-watch test-coverage
2022-08-14 20:54:18 +00:00
# Linting
lint:
npm run lint
lint-fix:
npm run lint:fix
.PHONY: lint lint-fix
2022-08-14 20:54:18 +00:00
# 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
.PHONY: clean clean-dev