chore: update

This commit is contained in:
2026-02-18 21:52:32 +01:00
parent aed786cf2c
commit 1f2e4e96dd
399 changed files with 4173 additions and 10273 deletions
@@ -38,6 +38,6 @@ for (const version of supportedRNVersions) {
// eslint-disable-next-line reanimated/use-logger
console.error(
`[Worklets] Your installed version of React Native (${reactNativeVersion}) is not compatible with installed version of Worklets (${workletsVersion}). See the documentation for the list of supported versions: https://docs.swmansion.com/react-native-worklets/docs/guides/compatibility/`
`[Worklets] React Native ${reactNativeVersion} version is not compatible with Worklets ${workletsVersion}`
);
process.exit(1);
@@ -57,7 +57,7 @@ end
def worklets_assert_minimal_react_native_version(config)
validate_react_native_version_script = File.expand_path(File.join(__dir__, 'validate-react-native-version.js'))
unless system("node \"#{validate_react_native_version_script}\" #{config[:react_native_version]}")
raise "[Worklets] Your installed version of React Native is not compatible with installed version of Worklets. See the documentation for the list of supported versions: https://docs.swmansion.com/react-native-worklets/docs/guides/compatibility/"
raise "[Worklets] React Native version is not compatible with Worklets"
end
end