mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
* fixes? * fix order * fix nokogiri build error * upgrade pkgs and lock * update podfile lock * fix resolutions * speed up installs * increase install speed * pr feedback * fix * only build for relevant webview paths * attempt to fix oom issue * actually fix * pr feedback * updaet package
20 lines
297 B
Bash
Executable File
20 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
REPO_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)
|
|
cd "$REPO_DIR"
|
|
|
|
yarn install
|
|
|
|
cd app
|
|
yarn clean:build
|
|
yarn clean:ios
|
|
yarn clean:xcode
|
|
yarn clean:android-deps
|
|
yarn clean:ruby
|
|
yarn clean:node
|
|
cd ..
|
|
|
|
yarn install
|
|
yarn workspace @selfxyz/mobile-app run install-app
|