-
Notifications
You must be signed in to change notification settings - Fork 650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add process guard #777
base: master
Are you sure you want to change the base?
add process guard #777
Conversation
@guybedford // When NODE_ENV is "development"
typeof process !== 'undefined' && process.env.NODE_ENV !== 'production'
// This becomes like the following in runtime
typeof process !== 'undefined' && "development" !== 'production'
// process is undefined in runtime, so this condition is always `false` But, I understand your concern, so we should find a way to work with JSPM. |
@koba04 Build tools that handle the replacement should know to intelligently replace the Perhaps we can follow up with build tool issues further as this is important to fix. |
Personally, I'd like to remove I noticed that |
Checking Agreed fully removing would be nice, was just posting the easiest fix to start. I will aim to follow up build issues if that's a concern. |
@guybedford I've noticed that there are other If we keep using |
I'd like to take an option to remove |
This fixes react-transition-group to work with
"module"
resolution on JSPM. See the example at https://jspm.org/sandbox#H4sIAAAAAAAAA61W32/aMBB+719xy172o0lKta6MQUXHqqobdFVp1e3RJAfxFtuRz0DptP99FwcYoJZW2x4gsn333Xd38XdpPktN4mYFQuZUfrTTXDxQpEc7AE2FTkCSCUvoWsHYDcN64A+cdDkeXWv/TJtxtV66aKGwFUwkTgtjXQCJ0Q41Q0xl6rJWihOZYOgXuyC1dFLkISUix1aNAzTjikFzYNKZR30WhvwA+NS/6MEparTCGQtnqsSHnij86UkqHVxfdhucjyuoEcejhWn0nQoVSRM/v94/z76dfvjxsbdnZ/27T/3rWvb5pDi/6hxedvv557vO5Eu3p3t3787Pu3Uz6X49nu5dXVz2pmfHQ9W5cX065mhh6IlRYmXhoCxiK5CejhKFL9JPz2m+SUFjvsFbFkXiQmeFJk7d6HBkzbhgi2DJWywJ60I17ndov4neRPsxkoqlTvGWXQIf4tduFZoSU+Ba5HvwV47ZoD0QA8xjO+bWKuQ+5AVa8jEEEVp3lUk6qzom7zDdQnodqn0Y1d5GB48jllnsPokQ3vJLldI/UZhjPD2o1Bla6ahrDOE/hV5DejoBM/iOibuRLjNjd2G5w9ZJ/A98tgFv0EuNCheuIk07OXdyS+wV8/ZBtB/tVd2fO27BtqjMBP8OfsV3I0KVaMgHcqS34K7Z8WWrRbU/F20Fr+BahaUCbCP5x6hdO4jqTPI+KH/RHxOCdu0w2uOL/yBAyBV5VE3YZhsQJRmm4xztFqClTZtR1oDmOL92Fv/lrxlXalmK41zU4aQPPVNiQD+TihoLSWcRJShMPhvKPIcha73yZgQDa6YsGwTT6k0FueJB48IvXgj2wtsEWZs7mTUKof7u9csN1RY00wmQTVoPZYgUVnFDKulxnrX9qB6nkly8cRYpqcvUIbGGyFg5kroVCG30TJkxBUeb6a+NjgrJzw1YZPSKCYJv1tVS+U9L4YchZ/TgGHlf4QPEMdywwCCXRup5/XgUpzzu0eIucFE5gADCQvCQROBaoy8rbwZclgCEc1YOxnxmNLgMFygV98iH4eFOJscoN6MX97F9+X6t9824muo85P3Xxm9INbHXhQgAAA== for the issue.