Skip to content

Commit 23d8b69

Browse files
committed
fix: update imports after package rename
1 parent 8196fa8 commit 23d8b69

15 files changed

Lines changed: 28 additions & 28 deletions

File tree

apps/demo/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import SandboxReactNativeView from '@callstack/react-native-sandbox'
12
import React from 'react'
23
import {SafeAreaView, StyleSheet, Text, View} from 'react-native'
3-
import SandboxReactNativeView from 'react-native-sandbox'
44
import Toast from 'react-native-toast-message'
55

66
import CrashIfYouCanDemo from './CrashIfYouCanDemo'

apps/demo/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2222,7 +2222,7 @@ DEPENDENCIES:
22222222
- React-runtimeexecutor (from `../../../node_modules/react-native/ReactCommon/runtimeexecutor`)
22232223
- React-RuntimeHermes (from `../../../node_modules/react-native/ReactCommon/react/runtime`)
22242224
- React-runtimescheduler (from `../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
2225-
- React-Sandbox (from `../../../node_modules/react-native-sandbox`)
2225+
- "React-Sandbox (from `../../../node_modules/@callstack/react-native-sandbox`)"
22262226
- React-timing (from `../../../node_modules/react-native/ReactCommon/react/timing`)
22272227
- React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`)
22282228
- ReactAppDependencyProvider (from `build/generated/ios`)
@@ -2370,7 +2370,7 @@ EXTERNAL SOURCES:
23702370
React-runtimescheduler:
23712371
:path: "../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
23722372
React-Sandbox:
2373-
:path: "../../../node_modules/react-native-sandbox"
2373+
:path: "../../../node_modules/@callstack/react-native-sandbox"
23742374
React-timing:
23752375
:path: "../../../node_modules/react-native/ReactCommon/react/timing"
23762376
React-utils:

apps/demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"react": "19.1.0",
1212
"react-native": "0.80.1",
1313
"react-native-toast-message": "^2.3.2",
14-
"react-native-sandbox": "workspace:*"
14+
"@callstack/react-native-sandbox": "workspace:*"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.25.2",

apps/fs-experiment/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import SandboxReactNativeView from '@callstack/react-native-sandbox'
12
import React, {useState} from 'react'
23
import {
34
Platform,
@@ -13,7 +14,6 @@ import {
1314
} from 'react-native'
1415
// File system imports
1516
import RNFS from 'react-native-fs'
16-
import SandboxReactNativeView from 'react-native-sandbox'
1717

1818
const SHARED_FILE_PATH = `${RNFS.DocumentDirectoryPath}/shared_test_file.txt`
1919

apps/fs-experiment/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,7 @@ DEPENDENCIES:
22552255
- React-runtimeexecutor (from `../../../node_modules/react-native/ReactCommon/runtimeexecutor`)
22562256
- React-RuntimeHermes (from `../../../node_modules/react-native/ReactCommon/react/runtime`)
22572257
- React-runtimescheduler (from `../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
2258-
- React-Sandbox (from `../../../node_modules/react-native-sandbox`)
2258+
- "React-Sandbox (from `../../../node_modules/@callstack/react-native-sandbox`)"
22592259
- React-timing (from `../../../node_modules/react-native/ReactCommon/react/timing`)
22602260
- React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`)
22612261
- ReactAppDependencyProvider (from `build/generated/ios`)
@@ -2406,7 +2406,7 @@ EXTERNAL SOURCES:
24062406
React-runtimescheduler:
24072407
:path: "../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
24082408
React-Sandbox:
2409-
:path: "../../../node_modules/react-native-sandbox"
2409+
:path: "../../../node_modules/@callstack/react-native-sandbox"
24102410
React-timing:
24112411
:path: "../../../node_modules/react-native/ReactCommon/react/timing"
24122412
React-utils:

apps/fs-experiment/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"react": "19.1.0",
1515
"react-native": "0.80.1",
16-
"react-native-sandbox": "workspace:*",
16+
"@callstack/react-native-sandbox": "workspace:*",
1717
"react-native-fs": "^2.20.0",
1818
"react-native-file-access": "^3.1.1"
1919
},

apps/recursive/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import SandboxReactNativeView from '@callstack/react-native-sandbox'
12
import React from 'react'
23
import {
34
SafeAreaView,
@@ -8,7 +9,6 @@ import {
89
useColorScheme,
910
View,
1011
} from 'react-native'
11-
import SandboxReactNativeView from 'react-native-sandbox'
1212

1313
const Colors = {
1414
light: '#ffffff',

apps/recursive/RecursiveDisplay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import SandboxReactNativeView from '@callstack/react-native-sandbox'
12
import React from 'react'
23
import {StyleSheet, Text, View} from 'react-native'
3-
import SandboxReactNativeView from 'react-native-sandbox'
44

55
const MAX_DEPTH = 5
66

apps/recursive/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2222,7 +2222,7 @@ DEPENDENCIES:
22222222
- React-runtimeexecutor (from `../../../node_modules/react-native/ReactCommon/runtimeexecutor`)
22232223
- React-RuntimeHermes (from `../../../node_modules/react-native/ReactCommon/react/runtime`)
22242224
- React-runtimescheduler (from `../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
2225-
- React-Sandbox (from `../../../node_modules/react-native-sandbox`)
2225+
- "React-Sandbox (from `../../../node_modules/@callstack/react-native-sandbox`)"
22262226
- React-timing (from `../../../node_modules/react-native/ReactCommon/react/timing`)
22272227
- React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`)
22282228
- ReactAppDependencyProvider (from `build/generated/ios`)
@@ -2370,7 +2370,7 @@ EXTERNAL SOURCES:
23702370
React-runtimescheduler:
23712371
:path: "../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
23722372
React-Sandbox:
2373-
:path: "../../../node_modules/react-native-sandbox"
2373+
:path: "../../../node_modules/@callstack/react-native-sandbox"
23742374
React-timing:
23752375
:path: "../../../node_modules/react-native/ReactCommon/react/timing"
23762376
React-utils:

apps/recursive/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"react": "19.1.0",
1212
"react-native": "0.80.1",
13-
"react-native-sandbox": "workspace:*"
13+
"@callstack/react-native-sandbox": "workspace:*"
1414
},
1515
"devDependencies": {
1616
"@babel/core": "^7.25.2",

0 commit comments

Comments
 (0)