Initial commit

This commit is contained in:
Cooper Dalrymple
2025-11-18 16:56:26 -06:00
parent 563fd88ec0
commit 4b2e3194be
15 changed files with 6683 additions and 3 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
all: install
reinstall: clean install
clean: clean-composer clean-npm
clean-composer:
rm -rf vendor/* || true
rm -rf lib/* || true
rm composer.lock || true
composer clearcache
clean-npm:
rm -rf node_modules/* || true
rm package-lock.json || true
install:
composer install
npm install
package: install
gulp package