We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27e2b68 commit d3886ceCopy full SHA for d3886ce
1 file changed
internal/node/node_loader.js
@@ -101,6 +101,9 @@ function resolveToModuleRoot(path) {
101
* See https://github.com/bazelbuild/bazel/issues/3726
102
*/
103
function loadRunfilesManifest(manifestPath) {
104
+ // Normalize slashes in manifestPath so they match slashes in manifest file
105
+ manifestPath = manifestPath.replace(/\\/g, '/');
106
+
107
log_verbose(`using manifest ${manifestPath}`);
108
109
// Create the manifest and reverse manifest maps.
0 commit comments