-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reloader daemon destroys wp-includes contents #90
Comments
I also have this problem. I found I was able to restore the folders by visiting Renaming the folders allowed me to delete them. I then ran |
Thanks for the workaround @duncanjbrown this will get me through till it's fixed |
I'm having this issue as well. |
I've disabled the built-in daemon that rebuilds everything when any file inside the project is updated and created a gulp watch task which detects any file from gulp.task('watch', function () {
return watch('public/**/*', { ignoreInitial: false })
.pipe(gulp.dest('public.built'));
}); This way, I only use It works, at least. haha |
Good call. I did the same thing and I'm using a Grunt task to My request for the future, if the built-in daemon is fixed, is that there be an easily configurable option to toggle that functionality with associated documentation. Now that I'm using my own build process to modify the |
While using the local development with Vagrant, whenever I save a file inside
public/
orsupport/
, the internal vagrant daemon removes all the contents frompublic.built/wp-includes/
folder.The daemon usually gets completely lost when I make too many changes on the filesystem at once (such as building my production assets with gulp).
What can I do to prevent this issue?
The text was updated successfully, but these errors were encountered: