Skip to content

Commit 6b13ae6

Browse files
committed
Disable Hermes by default
1 parent c1c0809 commit 6b13ae6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-template-cljs-krell-storybook",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Template providing a working React Native setup for ClojureScript with Krell and Storybook",
55
"scripts": {
66
"test": "exit 0"

template/ios/Podfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ target 'ProjectName' do
1515
# Hermes is now enabled by default. Disable by setting this flag to false.
1616
# Upcoming versions of React Native may rely on get_default_flags(), but
1717
# we make it explicit here to aid in the React Native upgrade process.
18-
:hermes_enabled => true,
18+
#
19+
# The Hermes engine does not work with several ES features emitted by the
20+
# Google Closure compiler, so we are disabling it
21+
:hermes_enabled => false,
1922
:fabric_enabled => flags[:fabric_enabled],
2023
# Enables Flipper.
2124
#

0 commit comments

Comments
 (0)