mirror of https://github.com/status-im/metro.git
[react-packager] Fix assetRoots when starting in node_modules
This commit is contained in:
parent
e2404cd3dd
commit
a895e62e6d
|
@ -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' +
|
||||||
|
|
Loading…
Reference in New Issue