From 2f1a384a5514625b0339dbc1b7080c5f21c8faf6 Mon Sep 17 00:00:00 2001 From: Preston Tighe Date: Fri, 10 Nov 2017 14:49:44 -0600 Subject: [PATCH] Smaller auth0 package * Remove isomorphic-fetch (not being used) --- auth/auth0/package.json | 1 - auth/auth0/src/auth0Authentication.js | 1 - 2 files changed, 2 deletions(-) diff --git a/auth/auth0/package.json b/auth/auth0/package.json index 1ede7be..9cc113b 100644 --- a/auth/auth0/package.json +++ b/auth/auth0/package.json @@ -1,7 +1,6 @@ { "dependencies": { "graphcool-lib": "^0.1.0", - "isomorphic-fetch": "^2.2.1", "jsonwebtoken": "^8.1.0", "jwks-rsa": "^1.2.1" } diff --git a/auth/auth0/src/auth0Authentication.js b/auth/auth0/src/auth0Authentication.js index f35cfd4..3f35ff7 100644 --- a/auth/auth0/src/auth0Authentication.js +++ b/auth/auth0/src/auth0Authentication.js @@ -1,4 +1,3 @@ -const isomorphicFetch = require('isomorphic-fetch') const jwt = require('jsonwebtoken') const jwkRsa = require('jwks-rsa') const fromEvent = require('graphcool-lib').fromEvent