Skip to content

Commit

Permalink
fix: add missing entry files and module exports #19
Browse files Browse the repository at this point in the history
close #18
  • Loading branch information
c4spar committed May 12, 2020
1 parent 92b7cd0 commit f16863d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions keycode.ts
@@ -0,0 +1 @@
export * from './packages/keycode/mod.ts';
7 changes: 5 additions & 2 deletions mod.ts
@@ -1,3 +1,6 @@
export * from './table.ts';
export * from './flags.ts';
export * from './ansi-escape.ts';
export * from './command.ts';
export * from './flags.ts';
export * from './keycode.ts';
export * from './prompt.ts';
export * from './table.ts';
1 change: 1 addition & 0 deletions prompt.ts
@@ -0,0 +1 @@
export * from './packages/prompt/mod.ts';

0 comments on commit f16863d

Please sign in to comment.