Skip to content

Commit

Permalink
fix: rename index to lambda-log to ensure the types are generated p…
Browse files Browse the repository at this point in the history
…roperly
  • Loading branch information
KyleRoss committed Nov 19, 2021
1 parent bb7bd7e commit 467c9e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.test.ts → src/lambda-log.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import log from '.';
import log from './lambda-log';
import LambdaLog from './LambdaLog';
import LogMessage from './LogMessage';

Expand Down
6 changes: 6 additions & 0 deletions src/lambda-log.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import LambdaLog from './LambdaLog.js';
import LogMessage from './LogMessage.js';
import * as Types from './typings.js';

export default new LambdaLog();
export { LambdaLog, LogMessage, Types };

0 comments on commit 467c9e4

Please sign in to comment.