-
Notifications
You must be signed in to change notification settings - Fork 24.3k
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
[Packager] Windows support for Packager - Blacklist changes #893
Conversation
// Don't forget to everything listed here to `testConfig.json` | ||
// modulePathIgnorePatterns. | ||
var sharedBlacklist = [ | ||
__dirname, | ||
'website', | ||
'/.git', // added because nodeWatcher does not ignore hidden files |
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.
recently fixed this error in sane
-- the file watcher.
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.
but it's fine to keep
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.
Great, also noticed you fixed the NodeWatcher creation to pass an object with glob
as a field, which seem to fix an issue where the glob pattern was being ignored.
This looks good. Will pull shortly |
@amasad - did this ever get pulled? |
Looks like it wasn't :/ I'll pull it |
Summary: Another Pull Request implementing the changes in issue #468 - Enabled Packager to run on Windows This change relates to the blacklist fixes. It includes the path conversion for blacklist and changes to the default watched directory. It has no impact on Mac OSX. Closes facebook/react-native#893 Github Author: Joe Wood <joewood> Test Plan: Imported from GitHub, without a `Test Plan:` line.
Clarifying a sentence
Another Pull Request implementing the changes in issue #468 - Enabled Packager to run on Windows
This change relates to the blacklist fixes. It includes the path conversion for blacklist and changes to the default watched directory. It has no impact on Mac OSX.