Skip to content

Commit 2bc26b4

Browse files
committed
chore: expo managed workflow -> expo go
1 parent 3e4ec70 commit 2bc26b4

File tree

3 files changed

+3
-3
lines changed
  • packages/create-react-native-library/templates

3 files changed

+3
-3
lines changed

packages/create-react-native-library/templates/native-library-legacy/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const LINKING_ERROR =
44
`The package '<%- project.slug -%>' doesn't seem to be linked. Make sure: \n\n` +
55
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
66
'- You rebuilt the app after installing the package\n' +
7-
'- You are not using Expo managed workflow\n';
7+
'- You are not using Expo Go\n';
88

99
const <%- project.name -%> = NativeModules.<%- project.name -%>
1010
? NativeModules.<%- project.name -%>

packages/create-react-native-library/templates/native-library-mixed/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const LINKING_ERROR =
44
`The package '<%- project.slug -%>' doesn't seem to be linked. Make sure: \n\n` +
55
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
66
'- You rebuilt the app after installing the package\n' +
7-
'- You are not using Expo managed workflow\n';
7+
'- You are not using Expo Go\n';
88

99
// @ts-expect-error
1010
const isTurboModuleEnabled = global.__turboModuleProxy != null;

packages/create-react-native-library/templates/native-view-library/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const LINKING_ERROR =
99
`The package '<%- project.slug -%>' doesn't seem to be linked. Make sure: \n\n` +
1010
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
1111
'- You rebuilt the app after installing the package\n' +
12-
'- You are not using Expo managed workflow\n';
12+
'- You are not using Expo Go\n';
1313

1414
type <%- project.name -%>Props = {
1515
color: string;

0 commit comments

Comments
 (0)