Fix missing trailing / in commit artifacts workflow#31026
Merged
poteto merged 1 commit intogh/poteto/6/basefrom Sep 23, 2024
Merged
Fix missing trailing / in commit artifacts workflow#31026poteto merged 1 commit intogh/poteto/6/basefrom
poteto merged 1 commit intogh/poteto/6/basefrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
josephsavona
approved these changes
Sep 23, 2024
kassens
reviewed
Sep 23, 2024
| BASE_FOLDER='compiled-rn/facebook-fbsource/xplat/js' | ||
| mkdir -p ${BASE_FOLDER}/react-native-github/Libraries/Renderer/ | ||
| mkdir -p ${BASE_FOLDER}/RKJSModules/vendor/react/{scheduler,react,react-is,react-test-renderer}/ | ||
| mkdir -p ${BASE_FOLDER}/RKJSModules/vendor/react/{scheduler,react,react-dom,react-is,react-test-renderer}/ |
Member
There was a problem hiding this comment.
This line change doesn't match the description. Is that a second intentional change or accidental?
Member
Author
There was a problem hiding this comment.
react-dom was added recently as a new directory in the rn sync but it had been omitted here. I'll update the pr summary
|
Comparing: 4e9540e3c2a8f9ae56318b967939c99b3a815190...2b62d2d295ff3a3ebdb5f8f60cba3406d25b52d6 Critical size changesIncludes critical production bundles, as well as any change greater than 2%:
Significant size changesIncludes any change greater than 0.2%: Expand to show
|
poteto
added a commit
that referenced
this pull request
Sep 23, 2024
The trailing / was being omitted, so instead of moving the cjs directory itself, it would move only its contents instead. This broke some internal path assumptions. Additionally, updates the step to create the react-dom directory prior to moving. ghstack-source-id: b6eedb0 Pull Request resolved: #31026
poteto
added a commit
that referenced
this pull request
Sep 23, 2024
The trailing / was being omitted, so instead of moving the cjs directory itself, it would move only its contents instead. This broke some internal path assumptions. Additionally, updates the step to create the react-dom directory prior to moving. ghstack-source-id: b6eedb0 Pull Request resolved: #31026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Stack from ghstack (oldest at bottom):
The trailing / was being omitted, so instead of moving the cjs
directory itself, it would move only its contents instead. This broke
some internal path assumptions.
Additionally, updates the step to create the react-dom directory prior
to moving.