build.sh 234 B

12345678910
  1. CUR=$(pwd)/$(dirname $0)
  2. if test "$1" = 'clean'; then
  3. echo "Removing node_modules"
  4. rm -rf ./vuetifyxjs/node_modules/
  5. fi
  6. rm -r $CUR/vuetifyxjs/dist
  7. echo "Building vuetifyjs"
  8. cd $CUR/vuetifyxjs && npm install && npm run build