react-native-tvos 0.81.1-0 → 0.81.1-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,5 +17,5 @@ export const version: $ReadOnly<{
17
17
  major: 0,
18
18
  minor: 81,
19
19
  patch: 1,
20
- prerelease: '0',
20
+ prerelease: '1',
21
21
  };
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(81),
26
26
  RCTVersionPatch: @(1),
27
- RCTVersionPrerelease: @"0",
27
+ RCTVersionPrerelease: @"1",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.81.1-0
1
+ VERSION_NAME=0.81.1-1
2
2
  react.internal.publishingGroup=io.github.react-native-tvos
3
3
 
4
4
  android.useAndroidX=true
@@ -18,7 +18,7 @@ constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 81;
20
20
  int32_t Patch = 1;
21
- std::string_view Prerelease = "0";
21
+ std::string_view Prerelease = "1";
22
22
  } ReactNativeVersion;
23
23
 
24
24
  } // namespace facebook::react
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-tvos",
3
- "version": "0.81.1-0",
3
+ "version": "0.81.1-1",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -198,7 +198,7 @@
198
198
  "whatwg-fetch": "^3.0.0",
199
199
  "ws": "^6.2.3",
200
200
  "yargs": "^17.6.2",
201
- "@react-native-tvos/virtualized-lists": "0.81.1-0"
201
+ "@react-native-tvos/virtualized-lists": "0.81.1-1"
202
202
  },
203
203
  "codegenConfig": {
204
204
  "libraries": [
@@ -4,6 +4,7 @@
4
4
  # LICENSE file in the root directory of this source tree.
5
5
 
6
6
  require "json"
7
+ require_relative "../scripts/cocoapods/utils.rb"
7
8
 
8
9
  begin
9
10
  react_native_path = File.dirname(Pod::Executable.execute_command('node', ['-p',
@@ -20,12 +21,13 @@ end
20
21
  # package.json
21
22
  package = JSON.parse(File.read(File.join(react_native_path, "package.json")))
22
23
  version = package['version']
24
+ core_version = ReactNativePodsUtils.core_version_for_tv_version(version)
23
25
 
24
26
  source = ReactNativeDependenciesUtils.resolve_podspec_source()
25
27
 
26
28
  Pod::Spec.new do |spec|
27
29
  spec.name = 'ReactNativeDependencies'
28
- spec.version = version
30
+ spec.version = core_version
29
31
  spec.summary = 'React Native Dependencies'
30
32
  spec.description = 'ReactNativeDependencies is a podspec that contains all the third-party dependencies of React Native.'
31
33
  spec.homepage = 'https://github.com/facebook/react-native'
@@ -82,7 +84,7 @@ Pod::Spec.new do |spec|
82
84
  CONFIG="Debug"
83
85
  fi
84
86
 
85
- "$NODE_BINARY" "$REACT_NATIVE_PATH/third-party-podspecs/replace_dependencies_version.js" -c "$CONFIG" -r "#{version}" -p "$PODS_ROOT"
87
+ "$NODE_BINARY" "$REACT_NATIVE_PATH/third-party-podspecs/replace_dependencies_version.js" -c "$CONFIG" -r "#{core_version}" -p "$PODS_ROOT"
86
88
  EOS
87
89
  }
88
90
 
Binary file
Binary file
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env python
2
- # Copyright (c) Meta Platforms, Inc. and affiliates.
3
- #
4
- # This source code is licensed under the MIT license found in the
5
- # LICENSE file in the root directory of this source tree.
6
-
7
- import os
8
- import sys
9
-
10
- # Make sure we can find the lit package.
11
- sys.path.insert(0, os.path.join("/Users/runner/work/react-native/react-native/packages/react-native/sdks/hermes/external/llvh", 'utils', 'lit'))
12
-
13
- if __name__=='__main__':
14
- from lit.main import main
15
- main({})
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file