diff --git a/package.json b/package.json index be69323..1ea8741 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "11.110.1", + "version": "11.110.3", "workspaces": [ "packages/*" ], diff --git a/packages/v8-android-jit-nointl/package.json b/packages/v8-android-jit-nointl/package.json index f7cd55e..fadd6b0 100644 --- a/packages/v8-android-jit-nointl/package.json +++ b/packages/v8-android-jit-nointl/package.json @@ -1,6 +1,6 @@ { "name": "v8-android-jit-nointl", - "version": "11.110.1", + "version": "11.110.3", "description": "Pre-build version of V8 to be used by React Native apps", "repository": { "type": "git", @@ -18,6 +18,6 @@ }, "homepage": "https://github.com/Kudo/v8-android-buildscripts#readme", "files": [ - "dist/" + "dist/**/*" ] } diff --git a/packages/v8-android-jit/package.json b/packages/v8-android-jit/package.json index 40edaf7..0e835d9 100644 --- a/packages/v8-android-jit/package.json +++ b/packages/v8-android-jit/package.json @@ -1,6 +1,6 @@ { "name": "v8-android-jit", - "version": "11.110.1", + "version": "11.110.3", "description": "Pre-build version of V8 to be used by React Native apps", "repository": { "type": "git", @@ -18,6 +18,6 @@ }, "homepage": "https://github.com/Kudo/v8-android-buildscripts#readme", "files": [ - "dist/" + "dist/**/*" ] } diff --git a/packages/v8-android-nointl/package.json b/packages/v8-android-nointl/package.json index 9285cc1..f98612b 100644 --- a/packages/v8-android-nointl/package.json +++ b/packages/v8-android-nointl/package.json @@ -1,6 +1,6 @@ { "name": "v8-android-nointl", - "version": "11.110.1", + "version": "11.110.3", "description": "Pre-build version of V8 to be used by React Native apps (Non Intl supported version)", "repository": { "type": "git", @@ -18,6 +18,6 @@ }, "homepage": "https://github.com/Kudo/v8-android-buildscripts#readme", "files": [ - "dist/" + "dist/**/*" ] } diff --git a/packages/v8-android-tools-linux/package.json b/packages/v8-android-tools-linux/package.json index dac9490..14a1811 100644 --- a/packages/v8-android-tools-linux/package.json +++ b/packages/v8-android-tools-linux/package.json @@ -1,6 +1,6 @@ { "name": "v8-android-tools-linux", - "version": "11.110.1", + "version": "11.110.3", "description": "Tools for v8-android", "repository": { "type": "git", diff --git a/packages/v8-android-tools-macos/package.json b/packages/v8-android-tools-macos/package.json index 730ba26..fe51185 100644 --- a/packages/v8-android-tools-macos/package.json +++ b/packages/v8-android-tools-macos/package.json @@ -1,6 +1,6 @@ { "name": "v8-android-tools-macos", - "version": "11.110.1", + "version": "11.110.3", "description": "Tools for v8-android", "repository": { "type": "git", diff --git a/packages/v8-android/package.json b/packages/v8-android/package.json index 575b492..a97e7b6 100644 --- a/packages/v8-android/package.json +++ b/packages/v8-android/package.json @@ -1,6 +1,6 @@ { "name": "v8-android", - "version": "11.110.1", + "version": "11.110.3", "description": "Pre-build version of V8 to be used by React Native apps", "repository": { "type": "git", @@ -18,6 +18,6 @@ }, "homepage": "https://github.com/Kudo/v8-android-buildscripts#readme", "files": [ - "dist/" + "dist/**/*" ] } diff --git a/scripts/build.sh b/scripts/build.sh index 54cc78a..90328a1 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -25,7 +25,7 @@ if [[ ${PLATFORM} = "ios" ]]; then GN_ARGS_BASE="${GN_ARGS_BASE} enable_ios_bitcode=false use_xcode_clang=true ios_enable_code_signing=false v8_enable_pointer_compression=false ios_deployment_target=\"${IOS_DEPLOYMENT_TARGET}\" v8_control_flow_integrity=false v8_enable_lite_mode=true" elif [[ ${PLATFORM} = "android" ]]; then # Workaround v8 sysroot build issues with custom ndk - GN_ARGS_BASE="${GN_ARGS_BASE} use_sysroot=false" + GN_ARGS_BASE="${GN_ARGS_BASE} use_sysroot=false v8_control_flow_integrity=false" fi if [[ ${NO_INTL} = "true" ]]; then diff --git a/scripts/publish.py b/scripts/publish.py index cc73735..f0b2f40 100644 --- a/scripts/publish.py +++ b/scripts/publish.py @@ -200,7 +200,7 @@ def main(): args = parse_args() workdir = os.path.join(ROOT_DIR, "build", "publish") publish_engines(args, workdir) - publish_tools_macos(args, workdir) + # publish_tools_macos(args, workdir) create_engines_zip(args, workdir) create_tools_zip_macos(args, workdir)