Skip to content

Commit

Permalink
Add Expo development tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Jul 22, 2024
1 parent 90b7f3c commit 6183f67
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions dotfiles/.default-npm-packages
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ trash-cli
del-cli
retry-cli
gulp-cli
eas-cli
stylelint
renovate
wrangler
Expand Down
7 changes: 7 additions & 0 deletions dotfiles/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,23 @@ setopt histignorespace
# Set VSCode as the default editor
export EDITOR="code"

# Set vars for React Native development
export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home
export ANDROID_HOME=$HOME/Library/Android/sdk

# Extend PATH
# 1. Add GNU versions of core utilities to start of PATH to override defaults
# 2. Add X11 (XQuartz) to end of PATH
# 3. Add Android SDK paths to end of PATH
# NOTE: Overriding core utils with GNU equivalents causes 'brew doctor' warnings
export PATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/gnubin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/findutils/libexec/gnubin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/gnu-tar/libexec/gnubin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/grep/libexec/gnubin:$PATH"
export PATH="$PATH:/opt/X11/bin"
export PATH="$PATH:$ANDROID_HOME/emulator"
export PATH="$PATH:$ANDROID_HOME/platform-tools"

# Load Antidote and plugins
source "$HOMEBREW_PREFIX/opt/antidote/share/antidote/antidote.zsh"
Expand Down
1 change: 1 addition & 0 deletions scripts/brew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ brew install httpie
brew install wp-cli
brew install composer
brew install yamllint
brew install watchman
brew install git-cliff
brew install git-delta
brew install hyperfine
Expand Down
5 changes: 5 additions & 0 deletions scripts/cask.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ brew install --cask imageoptim
brew install --cask kaleidoscope
brew install --cask google-chrome

# App development
brew install --cask zulu@17
brew install --cask expo-orbit
brew install --cask android-studio

# Personal machine only
brew install --cask transmission
brew install --cask balenaetcher
Expand Down

0 comments on commit 6183f67

Please sign in to comment.