mirror of
https://github.com/kieraneglin/pinchflat.git
synced 2026-01-23 02:24:24 +00:00
Runs yarn install at project level on app boot (#304)
This commit is contained in:
parent
c0b8dec520
commit
bb0e104b7e
1 changed files with 4 additions and 4 deletions
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
set -e
|
||||
|
||||
# Ensure the app's deps are installed
|
||||
echo "\nInstalling Elixir deps..."
|
||||
mix deps.get
|
||||
|
||||
# Install JS deps
|
||||
echo "\nInstalling JS..."
|
||||
cd assets && yarn install
|
||||
# Install both project-level and assets-level JS dependencies
|
||||
echo "\nInstalling JS deps..."
|
||||
yarn install && cd assets && yarn install
|
||||
cd ..
|
||||
|
||||
# Potentially Set up the database
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue