packager: GlobalTransformCache: fix non-bound function

Reviewed By: cpojer

Differential Revision: D4972905

fbshipit-source-id: c9aaaba47f2c74bf48b7cbbc1255992d36ae32b1
This commit is contained in:
Jean Lauliac 2017-04-28 14:55:06 -07:00 committed by Facebook Github Bot
parent 58ba7fc075
commit fddb3b0737
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}