Initial commit
This commit is contained in:
21
Makefile
Normal file
21
Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
all: install
|
||||
|
||||
reinstall: clean install
|
||||
|
||||
clean: clean-composer clean-npm
|
||||
|
||||
clean-composer:
|
||||
rm -rf vendor/* || 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
|
||||
Reference in New Issue
Block a user