flipper-doctor
Advanced tools
Comparing version 0.5.0 to 0.6.0
@@ -74,3 +74,3 @@ "use strict"; | ||
return [4 /*yield*/, Promise.all(category.healthchecks.map(function (_a) { | ||
var label = _a.label, run = _a.run; | ||
var key = _a.key, label = _a.label, run = _a.run; | ||
return __awaiter(void 0, void 0, void 0, function () { | ||
@@ -82,2 +82,3 @@ var _b; | ||
_b = { | ||
key: key, | ||
label: label | ||
@@ -84,0 +85,0 @@ }; |
@@ -28,2 +28,3 @@ /** | ||
export declare type Healthcheck = { | ||
key: string; | ||
label: string; | ||
@@ -39,2 +40,3 @@ isRequired?: boolean; | ||
results: Array<{ | ||
key: string; | ||
label: string; | ||
@@ -41,0 +43,0 @@ isRequired: boolean; |
@@ -73,2 +73,3 @@ "use strict"; | ||
{ | ||
key: 'common.openssl', | ||
label: 'OpenSSL Installed', | ||
@@ -90,2 +91,3 @@ run: function (_) { return __awaiter(_this, void 0, void 0, function () { | ||
{ | ||
key: 'common.watchman', | ||
label: 'Watchman Installed', | ||
@@ -114,2 +116,3 @@ run: function (_) { return __awaiter(_this, void 0, void 0, function () { | ||
{ | ||
key: 'android.sdk', | ||
label: 'SDK Installed', | ||
@@ -133,2 +136,3 @@ isRequired: true, | ||
{ | ||
key: 'ios.sdk', | ||
label: 'SDK Installed', | ||
@@ -145,2 +149,3 @@ isRequired: true, | ||
{ | ||
key: 'ios.xcode', | ||
label: 'XCode Installed', | ||
@@ -157,2 +162,3 @@ isRequired: true, | ||
{ | ||
key: 'ios.xcode-select', | ||
label: 'xcode-select set', | ||
@@ -174,2 +180,3 @@ isRequired: true, | ||
{ | ||
key: 'ios.instruments', | ||
label: 'Instruments exists', | ||
@@ -226,3 +233,3 @@ isRequired: true, | ||
return [4 /*yield*/, Promise.all(category.healthchecks.map(function (_a) { | ||
var label = _a.label, run = _a.run, isRequired = _a.isRequired; | ||
var key = _a.key, label = _a.label, run = _a.run, isRequired = _a.isRequired; | ||
return __awaiter(_this, void 0, void 0, function () { | ||
@@ -234,2 +241,3 @@ var _b; | ||
_b = { | ||
key: key, | ||
label: label, | ||
@@ -236,0 +244,0 @@ isRequired: (isRequired !== null && isRequired !== void 0 ? isRequired : true) |
{ | ||
"name": "flipper-doctor", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Utility for checking for issues with a flipper installation", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
30938
601