Skip to content

Commit

Permalink
Standard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondfrancis committed Aug 29, 2021
1 parent 36990f3 commit 7228fc9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default as FileCache } from './src/cache/file'
export { default as terminalLogger } from './src/loggers/terminal'
export { default as terminalLogger } from './src/loggers/terminal'
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { default as Block } from './src/block'
export { default as torchlight } from './src/torchlight'
export { default as MemoryCache } from './src/cache/memory'
export { default as standardLogger } from './src/loggers/standard'
export { default as standardLogger } from './src/loggers/standard'
4 changes: 2 additions & 2 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs-extra'
import path from 'path'
import { default as FileCache } from './cache/file'
import { default as MemoryCache } from './cache/memory'
import FileCache from './cache/file'
import MemoryCache from './cache/memory'

/**
* @param {string|object} config
Expand Down

0 comments on commit 7228fc9

Please sign in to comment.