Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
fix: added some exports
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 21, 2018
1 parent f4e4980 commit 8575f69
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as EventEmitter from 'events'

import {ActionBase} from './action/base'
import deps from './deps'
import * as Errors from './errors'
import Errors, {CLIError, Options as ErrorOptions} from './errors'
import {ExitError} from './exit'
import * as Logger from './logger'
import Output from './output'
Expand All @@ -13,7 +13,7 @@ import {config, Config} from './config'

const e = new EventEmitter()
const output = Output(e)
const errors = Errors.default(e)
const errors = Errors(e)
const logger = Logger.default(e)

export const scope = (_scope?: string) => {
Expand Down Expand Up @@ -53,7 +53,9 @@ export default cli

export {
ActionBase,
CLIError,
Config,
ErrorOptions,
Errors,
ExitError,
IPromptOptions,
Expand Down

0 comments on commit 8575f69

Please sign in to comment.