From 03e85ef171f3317ee4316219ba378e4e53f84b6a Mon Sep 17 00:00:00 2001 From: Justin Date: Sat, 25 May 2019 17:57:30 -0400 Subject: [PATCH] refactor: Removed inconsistent export strategies Some exports were default ie Gitlab while others were named. This created some confusion and as such have been standardized as named exports. BREAKING CHANGE: Changing everything to named exports for simplicity --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 2f241ddc3..7c715a1bf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,4 @@ + import { bundler } from './infrastructure'; import * as APIServices from './services';