From 68b68f924c09c64d8d7e7134331e2d3affaebd9c Mon Sep 17 00:00:00 2001 From: Tony Kovanen Date: Thu, 25 Feb 2016 00:05:48 +0200 Subject: [PATCH] Use node-fetch --- lib/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/login.js b/lib/login.js index 881dced..c38d182 100644 --- a/lib/login.js +++ b/lib/login.js @@ -2,7 +2,7 @@ import { homedir } from 'os'; import { join as pathJoin } from 'path'; import readline from 'readline'; import fs from 'fs-promise'; -import fetch from 'isomorphic-fetch'; +import fetch from 'node-fetch'; import { stringify as stringifyQuery } from 'querystring'; const stdin = process.openStdin();