Skip to content

Commit 69e9d43

Browse files
committed
Fix missing newline
1 parent 0434ab0 commit 69e9d43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import RootLogger from "./lib/logger/rootLogger"
1+
import RootLogger from "./lib/logger/rootLogger";
22

33
const rootLogger = RootLogger.getInstance();
44

55
module.exports = rootLogger; // assign default export
66
exports = module.exports; // re-assign exports
77

8-
export default rootLogger
9-
export * from "./lib/config/interfaces"
10-
export * from "./lib/logger/level";
8+
export default rootLogger;
9+
export * from "./lib/config/interfaces";
10+
export * from "./lib/logger/level";

0 commit comments

Comments
 (0)