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
{{ message }}
This repository has been archived by the owner on Oct 30, 2021. It is now read-only.
Hi! Thanks for this library. After installing (using yarn add semantic-redux-form-fields) I got a few missing dependency errors:
Module not found: Can't resolve 'moment' in '/x/node_modules/semantic-redux-form-fields/lib'
Module not found: Can't resolve 'react-datepicker' in '/x/node_modules/semantic-redux-form-fields/lib'
After installing the dependencies (yarn add moment && yarn add react-datepicker) it worked.
Thanks!
The text was updated successfully, but these errors were encountered:
@maartendraijer both moment and react-datepicker are listed as peerDependencies in the package.json, which means you should get a message during install that they are required if you don't already have them installed. I might consider moving those as direct dependencies but I figured moment for example is something a lot of people already typically have installed if you're dealing with dates in your codebase
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi! Thanks for this library. After installing (using
yarn add semantic-redux-form-fields
) I got a few missing dependency errors:After installing the dependencies (
yarn add moment && yarn add react-datepicker
) it worked.Thanks!
The text was updated successfully, but these errors were encountered: