This commit is contained in:
Cooper Dalrymple
2026-06-04 13:05:07 -05:00
parent e5fadef788
commit bcfe35fa91
7 changed files with 55 additions and 27 deletions
+22
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