This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
Add originalFullName
to the public config
#3494
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why
#3376 added
currentFullName
for use as a stable identifier, but it is not stable through project transfers.originalFullName
is, so it should be used instead in libraries like auth-session and notifications.How
currentFullName
to the public config #3376 but fororiginalFullName
.currentFullName
is kept so that the CLI continues to function until we change the auth-session and notifications libraries to useoriginalFullName
.originalFullName
similar to [notifications] Add support for custom managed workflow expo#12465 and [auth session] Add support for custom managed workflow expo#12464.Test Plan
Run same unit tests that were added in #3376.
In a sample project run:
~/expo/expo-cli/node_modules/.bin/expo config --type public
, see bothcurrentFullName
andoriginalFullName
in output.