Skip to content
This repository was archived by the owner on Sep 23, 2022. It is now read-only.

Commit dcff410

Browse files
tcdavisexpbot
authored andcommitted
Upgrade for SDK 30
fbshipit-source-id: 58ed9d0
1 parent c75dfa7 commit dcff410

File tree

3 files changed

+32
-20
lines changed

3 files changed

+32
-20
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snack-sdk",
3-
"version": "1.0.12-rc.0",
3+
"version": "1.0.13-rc.0",
44
"description": "The Expo Snack SDK",
55
"main": "dist/snack.js",
66
"module": "esm/snack.js",

src/configs/preloadedModules.js

Lines changed: 29 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -315,59 +315,70 @@ export const haste = [
315315

316316
export const dependencies = {
317317
'24.0.0': {
318-
'expo': '24.0.0',
318+
expo: '24.0.0',
319319
'react-native-svg': 'expo/react-native-svg#5.5.1-exp.1',
320320
'react-native-vector-icons': 'expo/vector-icons#6.2.0',
321321
'react-native': '0.51.0',
322-
'react': '16.0.0',
323-
'three': '0.87.1',
322+
react: '16.0.0',
323+
three: '0.87.1',
324324
},
325325
'25.0.0': {
326-
'expo': '25.0.0',
326+
expo: '25.0.0',
327327
'react-native-svg': 'expo/react-native-svg#5.5.1-exp.1',
328328
'react-native-vector-icons': 'expo/vector-icons#6.2.0',
329329
'react-native': '0.52.0',
330-
'react': '16.2.0',
331-
'three': '0.89.0',
330+
react: '16.2.0',
331+
three: '0.89.0',
332332
},
333333
'26.0.0': {
334-
'expo': '26.0.0',
334+
expo: '26.0.0',
335335
'react-native-svg': '6.2.2',
336336
'react-native-vector-icons': 'expo/vector-icons#6.3.1',
337337
'react-native': '0.54.2',
338-
'react': '16.3.0-alpha.1',
339-
'three': '0.90.0',
338+
react: '16.3.0-alpha.1',
339+
three: '0.90.0',
340340
},
341341
'27.0.0': {
342342
'@expo/vector-icons': '6.3.1',
343-
'expo': '27.0.0',
343+
expo: '27.0.0',
344344
'react-native-gesture-handler': '1.0.0-alpha.41',
345345
'react-native-svg': '6.2.2',
346346
'react-native-vector-icons': 'expo/vector-icons#6.3.1',
347347
'react-native': '0.55.2',
348-
'react': '16.3.1',
349-
'three': '0.90.0',
348+
react: '16.3.1',
349+
three: '0.90.0',
350350
},
351351
'28.0.0': {
352352
'@expo/vector-icons': '6.3.1',
353-
'expo': '28.0.0',
353+
expo: '28.0.0',
354354
'react-native-gesture-handler': '1.0.4',
355355
'react-native-reanimated': '1.0.0-alpha.2',
356356
'react-native-svg': '6.2.2',
357357
'react-native-vector-icons': 'expo/vector-icons#6.3.1',
358358
'react-native': '0.55.4',
359-
'react': '16.3.1',
360-
'three': '0.90.0',
359+
react: '16.3.1',
360+
three: '0.90.0',
361361
},
362362
'29.0.0': {
363363
'@expo/vector-icons': '6.3.1',
364-
'expo': '29.0.0',
364+
expo: '29.0.0',
365365
'react-native-gesture-handler': '1.0.6',
366366
'react-native-reanimated': '1.0.0-alpha.3',
367367
'react-native-svg': '6.2.2',
368368
'react-native-vector-icons': 'expo/vector-icons#6.3.1',
369369
'react-native': '0.55.4',
370-
'react': '16.3.1',
371-
'three': '0.90.0',
370+
react: '16.3.1',
371+
three: '0.90.0',
372+
},
373+
'30.0.0': {
374+
'@expo/vector-icons': '6.3.1',
375+
expo: '30.0.0',
376+
'react-native-gesture-handler': '1.0.6',
377+
'react-native-reanimated': '1.0.0-alpha.6',
378+
'react-native-svg': '6.2.2',
379+
'react-native-vector-icons': 'expo/vector-icons#6.3.1',
380+
'react-native': '0.55.4',
381+
react: '16.3.1',
382+
three: '0.90.0',
372383
},
373384
};

src/configs/sdkVersions.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ export const versions = {
1616
'27.0.0': [],
1717
'28.0.0': [],
1818
'29.0.0': [],
19+
'30.0.0': [],
1920
};
2021

21-
export const defaultSDKVersion = '29.0.0';
22+
export const defaultSDKVersion = '30.0.0';
2223

2324
export type Feature = $Keys<typeof minFeatureVersion>;
2425
export type SDKVersion = $Keys<typeof versions>;

0 commit comments

Comments
 (0)