Hi,
I am starting a new project with the react_on_rails gem that I’ve been looking at for some months with a lot of interest.
When making the latest deploy to Heroku I got the following message:
ReactOnRails gem and node package MAJOR versions do not match.
I understand that the version checker installed by the gem https://github.com/shakacode/react_on_rails/blob/master/lib/react_on_rails/version_checker.rb is complaining about version mismatches.
Indeed, my gem version is 3.0.6 and my node package 4.0.0-beta.1
I guess that at some point when setting up the project, I ran both this command:
cd client && npm i --saveDev react-on-rails
which I now understand is intended for manual install and this one:
rails generate react_on_rails:install
My package.json file effectively lists react-on-rails 4.0.0-beta.1 as a dependancy.
Is it safe to keep it as currently is (with the version mismatch) or should I solve this issue?
And if I have to solve this issue, is it safe just to amend my package.json file and require version 3.0.6 of the react_on_rails node package as dependency?
I am still at a very early stage with this project and have not yet started to fiddle around in the client directory and/or with all the goodies provided by React_on_rails.
Many thanks and thanks a lot for the good work of packaging everything so nicely!!!