Guest User

Untitled

a guest
Jun 4th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. ##############################
  4. # License: MIT
  5. # Author: D.C. Thompson
  6. # ://gist.githubusercontent.com/nothingismagick/527588a147e39b51153958ecafbd3075/raw
  7. # @quasar/develop
  8. #
  9. # REQUIREMENTS
  10. # git
  11. # node 8.LTS
  12. # yarn 1.6.0 (yarn 1.7.0 is broken ATM)
  13. #
  14. # EXAMPLE USAGE
  15. # ./develop-quasar-inline.sh
  16. #
  17. # THIS IS THE FIRST SMOKE TEST
  18. #
  19. ##############################
  20.  
  21. mkdir seed
  22. cd seed
  23. yarn init
  24.  
  25. # this makes sure you are globally on the latest quasar-cli
  26. # is cleaner for bootstrapping the first new project
  27. # safest would be to build from source
  28. yarn add quasar-cli@latest
  29. quasar --version #0.16.4 at the time of this writing
  30. quasar init quasar-test-app
  31. cd quasar-test-app
  32.  
  33. # yes, the following all takes place within quasar-test-app
  34. # change the clone source to match your
  35. git clone git@github.com:quasarframework/quasar-framework.git
  36. cd quasar-framework
  37. git checkout dev
  38. yarn
  39.  
  40. cd ..
  41. git clone git@github.com:quasarframework/quasar-cli.git
  42. cd quasar-cli
  43. git checkout dev
  44. yarn
  45. yarn add "vue-loader@link:./node_modules/vue-loader"
  46. yarn add "quasar-framework@link:./quasar-framework"
  47. framework=$(cat package.json |
  48. cd ..
  49. git clone git@github.com:quasarframework/quasar-testing.git
  50. cd quasar-testing
  51. git checkout dev
  52. yarn
  53.  
  54. cd ..
  55. yarn add "quasar-cli@link:./quasar-cli"
  56. yarn add "quasar-testing@link:./quasar-testing"
  57.  
  58. echo ' ___ ____'
  59. echo ' / _ \ _ _ __ _ ___ __ _ _ __| _ \ _____ __'
  60. echo ' | | | | | | |/ _` / __|/ _` | `__| | | |/ _ \ \ / / '
  61. echo ' | |_| | |_| | (_| \__ \ (_| | | | |_| | __/\ V / '
  62. echo ' \__\_\\__,_|\__,_|___/\__,_|_| |____/ \___| \_/ '
  63. echo ' ---------------------------------------------------'
  64.  
  65.  
  66. exit 0
Add Comment
Please, Sign In to add comment