[react-packager] Fix assetRoots when starting in node_modules
This commit is contained in:
parent
0fdf8b4a95
commit
7dc411b162
|
@ -68,9 +68,13 @@ if (options.assetRoots) {
|
|||
if (!Array.isArray(options.assetRoots)) {
|
||||
options.assetRoots = options.assetRoots.split(',');
|
||||
}
|
||||
} else {
|
||||
if (__dirname.match(/node_modules\/react-native\/packager$/)) {
|
||||
options.assetRoots = [path.resolve(__dirname, '../../..')];
|
||||
} else {
|
||||
options.assetRoots = [path.resolve(__dirname, '..')];
|
||||
}
|
||||
}
|
||||
|
||||
console.log('\n' +
|
||||
' ===============================================================\n' +
|
||||
|
|
Loading…
Reference in New Issue