eslint-import-resolver-kjlnode
Advanced tools
Comparing version 0.0.7 to 0.0.8
@@ -21,5 +21,5 @@ const resolve = require('resolve') | ||
if (startsWith(source, '@') && config.root && isArray(config.alias)) { | ||
const path = handleAlias(source, opts(file, config)) | ||
if (path) { | ||
return { found: true, path } | ||
const p = handleAlias(source, opts(file, config)) | ||
if (p) { | ||
return { found: true, path: p } | ||
} | ||
@@ -26,0 +26,0 @@ } |
{ | ||
"name": "eslint-import-resolver-kjlnode", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "a fork of eslint-import-resolver-node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
3229