From 3c3f6ef6cbc8148e0fadb07244973be77af8d9b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elis=C3=A9e=20Maurer?= Date: Wed, 2 Nov 2016 09:44:56 +0100 Subject: [PATCH] Fix a couple broken imports because SupClient hierarchy changed --- SupRuntime/src/Player.ts | 2 +- SupRuntime/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SupRuntime/src/Player.ts b/SupRuntime/src/Player.ts index 91cde5aed..dbbdb94f2 100644 --- a/SupRuntime/src/Player.ts +++ b/SupRuntime/src/Player.ts @@ -1,5 +1,5 @@ import * as async from "async"; -import supFetch from "../../../../SupClient/src/fetch"; +import supFetch from "../../../../SupClient/fetch"; interface Project { name: string; diff --git a/SupRuntime/src/index.ts b/SupRuntime/src/index.ts index 15bdc833a..67dd6fb11 100644 --- a/SupRuntime/src/index.ts +++ b/SupRuntime/src/index.ts @@ -4,7 +4,7 @@ import * as async from "async"; import * as querystring from "querystring"; -import supFetch from "../../../../SupClient/src/fetch"; +import supFetch from "../../../../SupClient/fetch"; import Player from "./Player"; // Any export here will be exposed as SupRuntime.* by browserify