Show Meteor dependency chain with rebuild-wekan.sh .

Thanks to xet7 !
pull/4991/head
Lauri Ojansivu 2 years ago
parent 3aae07695c
commit ba9f9705d4
  1. 8
      rebuild-wekan.sh

@ -15,7 +15,7 @@ function pause(){
echo echo
PS3='Please enter your choice: ' PS3='Please enter your choice: '
options=("Install Wekan dependencies" "Build Wekan" "Run Meteor for dev on http://localhost:4000" "Run Meteor for dev on http://localhost:4000 with trace warnings, and warnings using old Meteor API that will not exist in Meteor 3.0" "Run Meteor for dev on http://localhost:4000 with bundle visualizer" "Run Meteor for dev on http://CURRENT-IP-ADDRESS:4000" "Run Meteor for dev on http://CURRENT-IP-ADDRESS:4000 with MONGO_URL=mongodb://127.0.0.1:27019/wekan" "Run Meteor for dev on http://CUSTOM-IP-ADDRESS:PORT" "Quit") options=("Install Wekan dependencies" "Build Wekan" "Run Meteor for dev on http://localhost:4000" "Run Meteor for dev on http://localhost:4000 with trace warnings, and warnings using old Meteor API that will not exist in Meteor 3.0" "Run Meteor for dev on http://localhost:4000 with bundle visualizer" "Run Meteor for dev on http://CURRENT-IP-ADDRESS:4000" "Run Meteor for dev on http://CURRENT-IP-ADDRESS:4000 with MONGO_URL=mongodb://127.0.0.1:27019/wekan" "Run Meteor for dev on http://CUSTOM-IP-ADDRESS:PORT" "Show Meteor dependency chain" "Quit")
select opt in "${options[@]}" select opt in "${options[@]}"
do do
@ -195,6 +195,12 @@ do
break break
;; ;;
"Show Meteor dependency chain")
meteor list --tree | more
#---------------------------------------------------------------------
break
;;
"Quit") "Quit")
break break
;; ;;

Loading…
Cancel
Save