Skip to content

Commit

Permalink
šŸ› FIX: workaround third party bug #140
Browse files Browse the repository at this point in the history
  • Loading branch information
apolopena committed May 21, 2021
1 parent 3a4e996 commit 1ec1c51
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .gp/bash/init-optional-scaffolding.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,6 @@ fi # end check laravel/ui already in vcs but needs composer install
# Cleanup (since we use yarn)
[ -f package-lock.json ] && rm package-lock.json
# END: Install Laravel ui if needed

# workaround for third party bug https://github.com/apolopena/gitpod-laravel-starter/issues/140
# force latest sass 1.32.*
yes | npx add-dependencies sass@1.32.12 --dev

# BEGIN: Optional react, react-dom and react-router-dom installs
if [ $install_react == 1 ]; then
Expand Down Expand Up @@ -281,4 +277,9 @@ if [[ -n $init_vue_example ]];then
. "$init_vue_example" 2>/dev/null || log_silent -e "ERROR: $(. $init_vue_example 2>&1 1>/dev/null)"
exit
fi
# END: optional example setup
# END: optional example setup

# workaround for third party bug https://github.com/apolopena/gitpod-laravel-starter/issues/140
# force latest sass 1.32.*
#yes | npx add-dependencies sass@1.32.12 --dev
yarn upgrade sass@1.32.12

0 comments on commit 1ec1c51

Please sign in to comment.