[react-packager] Fix assetRoots when starting in node_modules

This commit is contained in:
Amjad Masad 2015-03-27 19:27:17 -07:00
parent 0fdf8b4a95
commit 7dc411b162
1 changed files with 5 additions and 1 deletions

View File

@ -69,7 +69,11 @@ if (options.assetRoots) {
options.assetRoots = options.assetRoots.split(','); options.assetRoots = options.assetRoots.split(',');
} }
} else { } 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' + console.log('\n' +