Skip to content

Commit

Permalink
Fix build issues?
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Nov 1, 2018
1 parent 87eaf39 commit 2ae7b21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -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'
3 changes: 2 additions & 1 deletion src/rundeckBrowser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 2ae7b21

Please sign in to comment.