-
Notifications
You must be signed in to change notification settings - Fork 1k
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
fix: move public
into iOS target directory
#4002
Conversation
public
a child directory of the iOS target, not the Xcode project
public
a child directory of the iOS target, not the Xcode projectpublic
into iOS target directory
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good
the .gitignore change for existing apps should be documented
also the native iOS project change, I find this one more problematic and easier to miss and can lead to a lot of users not knowing why their file changes don't get updated after the migration
should the CLI remove the existing ios/app/public
folder? or should also be documented that users need to remove it?
The CLI should probably continue to support |
since the public folder is gitignored, there can be the case that an user downloads the project and the folder is not there so the CLI thinks the migration was done, but it wasn't maybe make the CLI check the |
Good point.
Yeah, should be possible. 👍 |
The
public
directory, which contains generated web assets, should exist alongside the generatedcapacitor.config.json
within the iOS target directory, not the Xcode workspace directory.TODO: