You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using yo electrode to generate a new app, the resulting dependencies have an engine mismatch error that prevents yarn install from working.
Using node v6, the install fails because electrode-electrify-react-compontent (dependency tree: electrode-archetype-react-app-dev -> electrode-webpack-reporter -> electrode-electrify-react-component) lists node ^4.2.6 under engines.
Sadly, if I switch to node 4, install fails because sw-precache-webpack-plugin (also required by electrode-archetype-react-app-dev) lists node >5 under engines
The way around this is to use yarn install --ignore-engines, but it would be much nicer if electrode-electrify-react-component could just allow for node 6. Is that change possible?
(Feel free to move to electrode repo, if desired.)
The text was updated successfully, but these errors were encountered:
When using yo electrode to generate a new app, the resulting dependencies have an engine mismatch error that prevents
yarn install
from working.Using node v6, the install fails because electrode-electrify-react-compontent (dependency tree: electrode-archetype-react-app-dev -> electrode-webpack-reporter -> electrode-electrify-react-component) lists node ^4.2.6 under engines.
Sadly, if I switch to node 4, install fails because sw-precache-webpack-plugin (also required by electrode-archetype-react-app-dev) lists node >5 under engines
The way around this is to use
yarn install --ignore-engines
, but it would be much nicer if electrode-electrify-react-component could just allow for node 6. Is that change possible?(Feel free to move to electrode repo, if desired.)
The text was updated successfully, but these errors were encountered: