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 Aug 9, 2020. It is now read-only.
I just installed gitdocs, did a npm -g upgrade to make sure all dependencies are up-to-date and when running a gitdocs build I am getting the following build errors:
Warning: Warning: componentWillMount has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details.
* Move code from componentWillMount to componentDidMount (preferred in most cases) or the constructor.
Please update the following components: %s%s
❯ Warning: Warning: componentWillMount has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details.
... (many more)
Any idea what can cause this? - I am also surprised about the %s%s in the error message - seems like the template did not get any parameters
The text was updated successfully, but these errors were encountered:
I can confirm this behaviour. I discovered that similar warnings are noted here.
You're getting this warning because componentWillMount is deprecated in newer React versions. If you're not using componentWillMount anywhere then one of your libraries is and it needs to be updated.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I just installed gitdocs, did a
npm -g upgrade
to make sure all dependencies are up-to-date and when running agitdocs build
I am getting the following build errors:Any idea what can cause this? - I am also surprised about the
%s%s
in the error message - seems like the template did not get any parametersThe text was updated successfully, but these errors were encountered: