Skip to content

Commit f78c69b

Browse files
committed
lint and dev up
1 parent 587bd3f commit f78c69b

2 files changed

Lines changed: 28 additions & 5 deletions

File tree

sample/ios/Podfile.lock

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,8 +1170,27 @@ PODS:
11701170
- React-logger (= 0.74.1)
11711171
- React-perflogger (= 0.74.1)
11721172
- React-utils (= 0.74.1)
1173-
- RNCMaskedView (0.3.1):
1173+
- RNCMaskedView (0.3.2):
1174+
- DoubleConversion
1175+
- glog
1176+
- hermes-engine
1177+
- RCT-Folly (= 2024.01.01.00)
1178+
- RCTRequired
1179+
- RCTTypeSafety
1180+
- React-Codegen
11741181
- React-Core
1182+
- React-debug
1183+
- React-Fabric
1184+
- React-featureflags
1185+
- React-graphics
1186+
- React-ImageManager
1187+
- React-NativeModulesApple
1188+
- React-RCTFabric
1189+
- React-rendererdebug
1190+
- React-utils
1191+
- ReactCommon/turbomodule/bridging
1192+
- ReactCommon/turbomodule/core
1193+
- Yoga
11751194
- RNGestureHandler (2.15.0):
11761195
- DoubleConversion
11771196
- glog
@@ -1538,7 +1557,7 @@ SPEC CHECKSUMS:
15381557
fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
15391558
glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
15401559
hermes-engine: 16b8530de1b383cdada1476cf52d1b52f0692cbc
1541-
RCT-Folly: 02617c592a293bd6d418e0a88ff4ee1f88329b47
1560+
RCT-Folly: 5dc73daec3476616d19e8a53f0156176f7b55461
15421561
RCTDeprecation: efb313d8126259e9294dc4ee0002f44a6f676aba
15431562
RCTRequired: f49ea29cece52aee20db633ae7edc4b271435562
15441563
RCTTypeSafety: a11979ff0570d230d74de9f604f7d19692157bc4
@@ -1587,7 +1606,7 @@ SPEC CHECKSUMS:
15871606
React-runtimescheduler: 87b14969bb0b10538014fb8407d472f9904bc8cd
15881607
React-utils: 67574b07bff4429fd6c4d43a7fad8254d814ee20
15891608
ReactCommon: 64c64f4ae1f2debe3fab1800e00cb8466a4477b7
1590-
RNCMaskedView: de80352547bd4f0d607bf6bab363d826822bd126
1609+
RNCMaskedView: af7c1703f39cdef08a99275bfcadf324aa403403
15911610
RNGestureHandler: 293aea360e79439e2272b8a5ffebd582a1e4c486
15921611
RNReanimated: af5545657216ca1794252c132f9e6e8ceb475462
15931612
RNScreens: 02747ebee17d2e322af4ee383877367cf82a3cd6

sample/src/App.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const config: Configuration = {
6767
ios: {
6868
backgroundColor: '#f0f0e8',
6969
tintColor: '#2d2a38',
70-
closeButtonColor: '#f0f0e8',
70+
closeButtonColor: '#2d2a38',
7171
},
7272
android: {
7373
backgroundColor: '#f0f0e8',
@@ -172,7 +172,11 @@ function AppWithContext({children}: PropsWithChildren) {
172172
});
173173

174174
const pixel = shopify.addEventListener('pixel', (event: PixelEvent) => {
175-
console.log('[CheckoutPixelEvent]', event.name, JSON.stringify(event, null, 2));
175+
console.log(
176+
'[CheckoutPixelEvent]',
177+
event.name,
178+
JSON.stringify(event, null, 2),
179+
);
176180
});
177181

178182
const completed = shopify.addEventListener(

0 commit comments

Comments
 (0)