2022-08-14 20:54:18 +00:00
|
|
|
all: dev-setup lint build-js-production test
|
|
|
|
|
|
|
|
# Dev env management
|
2023-10-20 19:35:35 +00:00
|
|
|
dev-setup: clean clean-dev npm-init bin-ext install-tools
|
2022-10-20 20:45:00 +00:00
|
|
|
|
2023-10-20 19:35:35 +00:00
|
|
|
bin-ext:
|
|
|
|
sh scripts/get-bin-ext.sh
|
2022-08-14 20:54:18 +00:00
|
|
|
|
2023-10-14 08:25:50 +00:00
|
|
|
install-tools:
|
2023-10-14 09:13:34 +00:00
|
|
|
composer install
|
2022-10-20 21:04:15 +00:00
|
|
|
|
|
|
|
php-lint:
|
2023-10-14 19:40:58 +00:00
|
|
|
vendor/bin/php-cs-fixer fix
|
2023-10-14 08:25:50 +00:00
|
|
|
|
|
|
|
psalm:
|
2023-10-20 01:48:04 +00:00
|
|
|
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
|
|
|
|
|
2023-10-20 19:35:35 +00:00
|
|
|
.PHONY: dev-setup bin-ext install-tools php-lint psalm npm-init npm-update
|
2022-11-23 19:47:52 +00:00
|
|
|
|
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:
|
2023-04-16 17:02:51 +00:00
|
|
|
patch -p1 -N < patches/scroller-perf.patch || true
|
|
|
|
patch -p1 -N < patches/scroller-sticky.patch || true
|
2023-10-27 08:46:19 +00:00
|
|
|
patch -p1 -N < patches/plyr-wrap.patch || true
|
2023-10-27 10:02:07 +00:00
|
|
|
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
|
|
|
|
|
2022-11-23 19:47:52 +00:00
|
|
|
.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
|
|
|
|
|
2022-11-23 19:47:52 +00:00
|
|
|
.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
|
|
|
|
|
2022-11-23 19:47:52 +00:00
|
|
|
.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
|
|
|
|
2022-11-23 19:47:52 +00:00
|
|
|
.PHONY: clean clean-dev
|