Skip to content

Commit 6c2bf2a

Browse files
authored
fix: getConfigExporer typo (#153)
1 parent 36de203 commit 6c2bf2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class MacroError extends Error {
2020
}
2121

2222
let _configExplorer = null
23-
function getConfigExporer() {
23+
function getConfigExplorer() {
2424
return (_configExplorer =
2525
_configExplorer ||
2626
// Lazy load cosmiconfig since it is a relatively large bundle
@@ -263,7 +263,7 @@ function applyMacros({
263263

264264
function getConfigFromFile(configName, filename) {
265265
try {
266-
const loaded = getConfigExporer().search(filename)
266+
const loaded = getConfigExplorer().search(filename)
267267

268268
if (loaded) {
269269
return {

0 commit comments

Comments
 (0)