Skip to content

Commit 9660efd

Browse files
chore: use export as syntax (#243)
1 parent 9691634 commit 9660efd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Logger from './logger';
22
import Command from './command';
33
import ApiHelper from './api-helper';
44
import GitHelper from './git-helper';
5-
import * as Utils from './utils';
6-
import * as ContextHelper from './context-helper';
5+
export * as Utils from './utils';
6+
export * as ContextHelper from './context-helper';
77

8-
export { Logger, Command, ApiHelper, GitHelper, Utils, ContextHelper };
8+
export { Logger, Command, ApiHelper, GitHelper };

0 commit comments

Comments
 (0)