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 1ec1c51 commit 4e116bd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .gp/bash/init-optional-scaffolding.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@ else
fi
# END: Optional bootstrap install
# END: optional frontend scaffolding installations

# 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

# BEGIN: optional example setup
# Initialize optional react example project
if [[ -n $init_react_example ]];then
Expand Down Expand Up @@ -277,9 +283,4 @@ 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

# 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
# END: optional example setup

0 comments on commit 4e116bd

Please sign in to comment.