Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hipstersmoothie committed Dec 7, 2018
1 parent 9b23826 commit d3ed3c8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import GithubRelease from '../github-release';
import { normalizeCommits } from '../log-parse';
import GithubRelease from '../GithubRelease';
import SEMVER from '../semver';
import { dummyLog } from '../utils/logger';
import makeCommitFromMsg from './make-commit-from-msg';
Expand Down
2 changes: 1 addition & 1 deletion src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import GHub from '@octokit/rest';
import { ICommit, parseGit } from 'parse-git';
import { Memoize } from 'typescript-memoize';

import { ILogger } from './GithubRelease';
import { ILogger } from './github-release';
import execPromise from './utils/exec-promise';

export interface IGithubOptions {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/log-parse.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ICommit } from 'parse-git';
import { URL } from 'url';
import join from 'url-join';
import { ILogger } from './GithubRelease';
import { ILogger } from './github-release';

interface ICommitAuthor {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { IPRInfo } from './git';
import GithubRelease, {
defaultLabels,
IGithubReleaseOptions
} from './GithubRelease';
} from './github-release';

import createLog from './utils/logger';

Expand Down

0 comments on commit d3ed3c8

Please sign in to comment.