From 2ae7b2166f5cda4fb3ae06fc660ade07a95f9384 Mon Sep 17 00:00:00 2001 From: Greg Schueler Date: Thu, 1 Nov 2018 09:43:36 -0700 Subject: [PATCH] Fix build issues? --- src/index.ts | 4 ++-- src/rundeckBrowser.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index ec199c7..7b807b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ -export * from './lib/rundeck' -export * from './lib/rundeckContext' +export * from './lib/lib/rundeck' +export * from './lib/lib/rundeckContext' export * from './passwordCredProvider' export * from './rundeckBrowser' export * from './tokenCredProvider' diff --git a/src/rundeckBrowser.ts b/src/rundeckBrowser.ts index 1ece839..0f8548a 100644 --- a/src/rundeckBrowser.ts +++ b/src/rundeckBrowser.ts @@ -15,9 +15,10 @@ export class RundeckBrowser extends Rundeck { queue: Queue constructor(token: string | null, uri: string, baseUri?: string, options?: ServiceClientOptions) { - super(new BaseCredentialProvider(), baseUri, options) + super(new BaseCredentialProvider(), options) this.token = token this.uri = uri + this.baseUri = baseUri this.queue = new Queue(1, Infinity) }