Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/create-react-native-library/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const FALLBACK_BOB_VERSION = '0.40.8';
export const FALLBACK_NITRO_MODULES_VERSION = '0.26.2';
export const SUPPORTED_REACT_NATIVE_VERSION = '0.79.2';
export const FALLBACK_BOB_VERSION = '0.40.13';
export const FALLBACK_NITRO_MODULES_VERSION = '0.28.1';
export const SUPPORTED_REACT_NATIVE_VERSION = '0.81.0';
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
},
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"customConditions": ["react-native-strict-api"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { TurboModule } from 'react-native';
import { TurboModuleRegistry } from 'react-native';
import { TurboModuleRegistry, type TurboModule } from 'react-native';

export interface Spec extends TurboModule {
multiply(a: number, b: number): number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
import type { ViewProps } from 'react-native';
import { codegenNativeComponent, type ViewProps } from 'react-native';

interface NativeProps extends ViewProps {
color?: string;
Expand Down
Loading