mirror of https://github.com/status-im/metro.git
packager: GlobalTransformCache: fix non-bound function
Reviewed By: cpojer Differential Revision: D4972905 fbshipit-source-id: c9aaaba47f2c74bf48b7cbbc1255992d36ae32b1
This commit is contained in:
parent
2da9c66c78
commit
95db7be042
|
@ -408,8 +408,9 @@ class OptionsHasher {
|
|||
}
|
||||
|
||||
relativizeFilePaths(filePaths: Array<string>): Array<string> {
|
||||
return filePaths.map(this.relativizeFilePath);
|
||||
return filePaths.map(this.relativizeFilePath.bind(this));
|
||||
}
|
||||
|
||||
relativizeFilePath(filePath: string): string {
|
||||
return path.relative(this._rootPath, filePath);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue