@artsy/palette-mobile 13.0.11 → 13.0.12

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/CHANGELOG.md +12 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v13.0.12 (Tue Sep 19 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - feat: change port to avoid conflict with Eigen [#152](https://github.com/artsy/palette-mobile/pull/152) ([@anandaroop](https://github.com/anandaroop))
6
+
7
+ #### Authors: 1
8
+
9
+ - Anandaroop Roy ([@anandaroop](https://github.com/anandaroop))
10
+
11
+ ---
12
+
1
13
  # v13.0.11 (Tue Sep 19 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "13.0.11",
3
+ "version": "13.0.12",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
- "android": "react-native run-android",
6
+ "android": "RCT_METRO_PORT=8082 react-native run-android --port 8082",
7
7
  "beta:ios": "bundle e fastlane ios beta",
8
8
  "bundle-install": "bundle install",
9
9
  "clean": "rimraf dist",
10
10
  "compile": "tsc",
11
11
  "install:all": "yarn install && yarn bundle-install && yarn pod-install",
12
- "ios": "react-native run-ios",
12
+ "ios": "RCT_METRO_PORT=8082 react-native run-ios --port 8082",
13
13
  "lint:all": "yarn lint .",
14
14
  "lint": "eslint --cache --cache-location '.cache/eslint/' --ext .ts,.tsx --fix",
15
15
  "local-palette-dev": "./scripts/sync-after-change",
@@ -22,8 +22,8 @@
22
22
  "release:canary": "auto canary",
23
23
  "release": "auto shipit",
24
24
  "setup:artsy": "./scripts/download-fonts",
25
- "start:reset-cache": "react-native start --reset-cache",
26
- "start": "react-native start",
25
+ "start:reset-cache": "react-native start --reset-cache --port 8082",
26
+ "start": "react-native start --port 8082",
27
27
  "storybook-watcher": "sb-rn-watcher",
28
28
  "test": "jest",
29
29
  "type-check": "tsc --noEmit"