Bring back accidentally reverted changes from 89fc8a4d7f9fa1c23ac235e74731beabb3f9594d

This commit is contained in:
Amjad Masad 2015-03-27 22:11:33 -07:00
parent e7d1d95d0d
commit 3ec02183ae
1 changed files with 5 additions and 1 deletions

View File

@ -69,7 +69,11 @@ if (options.assetRoots) {
options.assetRoots = options.assetRoots.split(',');
}
} else {
options.assetRoots = [path.resolve(__dirname, '..')];
if (__dirname.match(/node_modules\/react-native\/packager$/)) {
options.assetRoots = [path.resolve(__dirname, '../../..')];
} else {
options.assetRoots = [path.resolve(__dirname, '..')];
}
}
console.log('\n' +