paypal / react-engine

a composite render engine for universal (isomorphic) express apps to render both plain react views and react-router views
Apache License 2.0
1.45k stars 130 forks source link

Feature/updating to babel #89

Closed erikakers closed 9 years ago

erikakers commented 9 years ago

Updating the React Engine samples to use Babel instead of Node-JSX since Node-JSX was deprecated in favor of Babel.

samsel commented 9 years ago

@erikakers thanks for taking care of this. would you mind fixing the build errors please. I guess you just need to change double quotes to single. https://travis-ci.org/paypal/react-engine/jobs/81889349

Also, can we change

require('babel/register')({}); to require('babel/register');

erikakers commented 9 years ago

Changed to require('babel/register') and changed to single quotes. All tests are now passing.

samsel commented 9 years ago

:+1: