Replace any X with your information.
What is the current behavior?
2 annoying issues with the current watch behaviour:
process-update.js:27 [HMR] Checking for updates on the server...
process-update.js:81 [HMR] The following modules couldn't be hot updated: (Full reload needed)
This is usually because the modules which have changed (and their parents) do not know how to hot reload themselves. See http://webpack.github.io/docs/hot-module-replacement-with-webpack.html for more details.
What is the expected or desired behavior?
(delete this section if not applicable)
Please provide steps to reproduce, including full log output:
Above steps pretty clear, after the yarn run start command
Please describe your local environment:
WordPress version: latest/4.7.2
OS: latest/10.12.3
NPM/Node version: 3.10.1/6.9.4
Where did the bug happen? Development or remote servers?
Development
Is there a related Discourse thread or were any utilized (please link them)?
No
I'm having the exact same issue, with the same software versions. I have to stop Yarn, then start it again with yarn start to stop the reload loop.
If I edit a js file, it causes the loop to start all over.
having the same issue here!
Same issue here.
Have you tried using the master branch?
I'm using the master branch and I'm not able to reproduce this behavior.
Did you by any chance changed the theme folder name?
What happened with me is that I wasn't using sage as my theme name and I forgot to change it
on config.json
I have changed mine, but I've updated it to be "publicPath": "/web/app/themes/themename" and I still have the infinite loop issue.
(I'm also using Bedrock)
/web/ shouldn't be in that path, that's your document root. it's not part of the public URL structure
You're right. I've removed /web/ so it now reads "publicPath": "/app/themes/themename"
Now it doesn't get into an infinite loop. Instead I get one notice in the console that the .js file doesn't know how to hot reload itself, and it needs to do a full refresh. But it does that one refresh and works fine.
What do they call this, an "I - D - Ten - T" error? Thanks for the help!
I'm closing this since I was unable to reproduce and it sounds like it's probably just a misconfiguration issue. Go into config.json and confirm that the publicPath is correct. If you're still having this issue, feel free to link me to a repo that has the problem or provide me with steps to reproduce and I'll reopen this issue.
Updating Node fixed it for me: Node.js >= 6.9.x (https://github.com/roots/docs/blob/sage-9/sage/theme-installation.md)
Hang on, I'm on the other side of the world:) This is indeed a configuration issue, #1 appears to have been fixed as well. Thanks.
I was having this issue as well, fixed it by removing a trailing slash in publicPath
Same thing for me, it was only a publicPath issue thanks !
Glad I found this solution