@lwc/module-resolver
Advanced tools
Comparing version 0.33.27-alpha2 to 0.33.28-1
{ | ||
"name": "@lwc/module-resolver", | ||
"description": "Resolves paths for LWC components", | ||
"version": "0.33.27-alpha2", | ||
"version": "0.33.28-1", | ||
"main": "./src/index.js", | ||
@@ -13,3 +13,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "4db02fa3977676731a3f5694cc5f72c660b14893" | ||
"gitHead": "4ad74da636c727fb2b8f09e0f70ef5798c4d9714" | ||
} |
@@ -37,3 +37,4 @@ /* | ||
const rootDir = path.dirname(file); | ||
const rootParts = rootDir.split(path.sep); | ||
// the glob library normalizes paths to forward slashes only - https://github.com/isaacs/node-glob#windows | ||
const rootParts = rootDir.split('/'); | ||
const registry = { | ||
@@ -40,0 +41,0 @@ entry: path.join(fullPathDir, file), |
9338
195