-
Notifications
You must be signed in to change notification settings - Fork 644
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
Updates to UnableToResolveError to account for different platforms. #267
Conversation
Codecov Report
@@ Coverage Diff @@
## master #267 +/- ##
==========================================
+ Coverage 85.68% 85.69% +<.01%
==========================================
Files 144 144
Lines 4556 4559 +3
Branches 712 712
==========================================
+ Hits 3904 3907 +3
Misses 582 582
Partials 70 70
Continue to review full report at Codecov.
|
0974c32
to
115d915
Compare
This error message is confusing when you get it on a mac, as /tmp/ isn't the tmp directory that is being used. The message should probably try to account for settings that are configured by users as well, the Metro Bundler cache at least is something that can be overwritten.
115d915
to
8a2eb05
Compare
); | ||
const hasteCacheLocation = path.join( | ||
os.tmpdir(), | ||
'haste-map-metro-4-*', |
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.
This changed from haste-map-react-native-packager-*
, but ideally should come from the location where it's configured:
name: 'metro-' + JEST_HASTE_MAP_CACHE_BREAKER, |
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.
We could get the actual cache path from jest-haste-map
if it was exposed as a getter (from here).
For now, this is perfectly fine, but I would change the second part of hasteCacheLocation
to haste-map-metro-*
so we don't have to update the error message if we bump the JEST_HASTE_MAP_CACHE_BREAKER
variable.
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.
Good call on removing the version, I'll update.
We don't have access to the HasteMap instance right? So we'd need to add it to module_map.js?
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.
Yeah, we could though change a bit the code here to have the HasteMap instance here once the getter for the cache folder gets eventually added to jest-haste-map
.
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.
jest v24 is going to have a getter for the cache path 😃
The first alpha for v24 has just been published and we're going to update Metro to this alpha version soon
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.
Thanks! What do you think about the small tweak in the path?
); | ||
const hasteCacheLocation = path.join( | ||
os.tmpdir(), | ||
'haste-map-metro-4-*', |
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.
We could get the actual cache path from jest-haste-map
if it was exposed as a getter (from here).
For now, this is perfectly fine, but I would change the second part of hasteCacheLocation
to haste-map-metro-*
so we don't have to update the error message if we bump the JEST_HASTE_MAP_CACHE_BREAKER
variable.
The function that @rafeca talked about is now part of Also, it seems like it makes sense to do the same for the Metro cache folder. Could we make it so we display the cache folder based on what Metro really uses instead of hardcoding it? |
Closing because of inactivity. |
Summary
This error message is confusing when you get it on a mac, as /tmp/ isn't the
tmp directory that is being used. The message should probably try to account
for settings that are configured by users as well, the Metro Bundler cache at
least is something that can be overwritten.
Test plan
Edited my node_modules/ folder for the metro-sample-app.