From 2363524fa750952d6b61c41f1af7a36ca01e3bbf Mon Sep 17 00:00:00 2001 From: Mo Kouli Date: Fri, 19 Oct 2018 10:04:28 -0700 Subject: [PATCH] [fix] `process.env.NODE` -> `process.env.NODE_ENV` Close #1145 --- .../src/vendor/react-native/LayoutAnimation/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-web/src/vendor/react-native/LayoutAnimation/index.js b/packages/react-native-web/src/vendor/react-native/LayoutAnimation/index.js index 21484ed9..423c9725 100644 --- a/packages/react-native-web/src/vendor/react-native/LayoutAnimation/index.js +++ b/packages/react-native-web/src/vendor/react-native/LayoutAnimation/index.js @@ -11,7 +11,7 @@ import PropTypes from 'prop-types'; import UIManager from '../../../exports/UIManager'; -const __DEV__ = process.env.NODE !== 'production'; +const __DEV__ = process.env.NODE_ENV !== 'production'; const { checkPropTypes } = PropTypes; const Types = {