mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

- hooks are installed automatically with npm install command - add commit-msg, pre-commit and pre-push hooks - integrate captainhook commands into the created git hooks
9 lines
272 B
Bash
9 lines
272 B
Bash
#!/bin/bash
|
|
|
|
# install only dev dependencies using the --no-dev option
|
|
php composer.phar install --no-dev --prefer-dist --no-ansi --no-interaction --no-progress --ignore-platform-reqs
|
|
|
|
# install js dependencies and build all production UI assets
|
|
npm install
|
|
npm run build
|