mitchallen / generator-mitchallen-react-component

react component project generator
MIT License
0 stars 0 forks source link

Update template .circleci/config.yml to install (add) react #6

Closed mitchallen closed 7 years ago

mitchallen commented 7 years ago

Because react is now a peer dependency it is no longer installed by default. After the call to yar install, call yarn add react (for yarn you must now use add instead of install).

Add the new line second line below right after the first in generators/app/templates/_cirlceci.config.yml:

      - run: yarn install
      - run: yarn add react
mitchallen commented 7 years ago

Fixed