-
Notifications
You must be signed in to change notification settings - Fork 113
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
globvar ignore
is ignored
#985
Comments
Hello @stanvanlier! Could you tell me how you defined
which seems about right? |
You're right! Apparently I didn't restarting the server. I assumed the whole |
It definitely should, but the hard bit is that I think you're assuming that there's a cleanup pass to remove files afterwards, and there isn't. What I mean is that you called serve, it copied stuff to site, then you saved config with a new ignore, but the copied files haven't been deleted. They will be deleted only if you call You can always work with clear mode but if you have evaluated code cells, this will slow stuff down quite a bit; if you don't it's fine :) |
Thanks, What I did was I deleted |
Ah yes that's an interesting one; Franklin keeps a list of files being watched and given that it was there from the start, it will keep assuming it needs to copy it if it's not there. What should ideally happen is that when ignore gets updated that list of files being watched also is. I'll reopen the issue to look a bit into it |
Adding files or directories to the
ignore
global config variable does not have an effect on what is copied over to the__site
directory.(I found out about it because
Manifest.toml
andProject.toml
are copied over to the__site
directory, which also should not happen according to the docs).The text was updated successfully, but these errors were encountered: