Fix flow errors

Reviewed By: davidaurelio

Differential Revision: D4619990

fbshipit-source-id: 80355b8f0d0c3f84691098a05cdf2ba136c4bf53
This commit is contained in:
Christoph Pojer
2017-02-27 08:00:08 -08:00
committed by Facebook Github Bot
parent 20ad2b3fbb
commit 37b91a63c7
5 changed files with 12 additions and 7 deletions

View File

@@ -11,6 +11,7 @@
'use strict';
const nullthrows = require('fbjs/lib/nullthrows');
const path = require('path');
import type {PackageData} from '../types.flow';
@@ -51,7 +52,7 @@ module.exports = class Package {
}
getName() {
return this.data.then(p => p.name);
return this.data.then(p => nullthrows(p.name));
}
isHaste() {