Skip to content

Commit

Permalink
Merge branch 'master' into signale
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonEtco authored Feb 13, 2019
2 parents ea9a411 + 1a9caf6 commit a1a0134
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface WebhookPayloadWithRepository {
}
}

export default class Context {
export class Context {
/**
* Webhook payload object that triggered the workflow
*/
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import yaml from 'js-yaml'
import minimist, { ParsedArgs } from 'minimist'
import path from 'path'
import { Signale } from 'signale'
import Context from './context'
import { Context } from './context'
import { Exit } from './exit'
import { GitHub } from './github'
import { Store } from './store'
Expand Down
2 changes: 1 addition & 1 deletion tests/context.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Context from '../src/context'
import { Context } from '../src/context'

describe('Context', () => {
let context: Context
Expand Down

0 comments on commit a1a0134

Please sign in to comment.