@artsy/palette-mobile 23.3.0 → 23.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -87,12 +87,18 @@ brew install gh # First time only
87
87
  brew install fastlane # First time only
88
88
  ```
89
89
 
90
+ If Android local build config seems out of sync after changing `Example/app.json` or native-related dependencies, run:
91
+
92
+ ```sh
93
+ cd Example
94
+ npx expo prebuild --clean --platform android
95
+ ```
96
+
90
97
  ### Trigger Cloud Builds via GitHub Actions
91
98
 
92
99
  Make sure to push all necessary changes first.
93
100
 
94
101
  ```sh
95
- cd Example
96
102
  yarn deploy-beta
97
103
  ```
98
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "23.3.0",
3
+ "version": "23.5.0",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "workspaces": [
6
6
  "Example"
@@ -9,7 +9,7 @@
9
9
  "android": "yarn workspace palette-mobile-example android",
10
10
  "android:clean": "yarn workspace palette-mobile-example android:prebuild --clean",
11
11
  "android:prebuild": "yarn workspace palette-mobile-example android:prebuild",
12
- "beta:ios": "bundle e fastlane ios beta",
12
+ "deploy-beta": "./Example/scripts/deploys/deploy-beta-both",
13
13
  "bundle-install": "bundle install",
14
14
  "clean": "rimraf dist",
15
15
  "compile": "tsc",