fix: when cwd is root and the <rootDir> tag is replaced, the resulting path should not begin with //
This commit is contained in:
parent
e489409b9c
commit
8b4b0a6140
|
@ -9,7 +9,7 @@ module.exports = {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return path.join(CWD, 'node_modules', 'filer');
|
return path.join(CWD, 'node_modules', 'filer');
|
||||||
}
|
}
|
||||||
return value.replace(ROOT_DIR_TAG, CWD);
|
return path.resolve(value.replace(ROOT_DIR_TAG, CWD));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
shimsDir: {
|
shimsDir: {
|
||||||
|
@ -17,18 +17,18 @@ module.exports = {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return path.join(CWD, 'node_modules', 'filer', 'shims');
|
return path.join(CWD, 'node_modules', 'filer', 'shims');
|
||||||
}
|
}
|
||||||
return value.replace(ROOT_DIR_TAG, CWD);
|
return path.resolve(value.replace(ROOT_DIR_TAG, CWD));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
shimFs: { default: true },
|
|
||||||
shimPath: { default: true},
|
|
||||||
fsProvider: { default: 'default'},
|
|
||||||
fsProviderDir: {
|
fsProviderDir: {
|
||||||
process: function(value) {
|
process: function(value) {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return path.join(CWD, 'node_modules', 'filer', 'shims', 'providers');
|
return path.join(CWD, 'node_modules', 'filer', 'shims', 'providers');
|
||||||
}
|
}
|
||||||
return value.replace(ROOT_DIR_TAG, CWD);
|
return path.resolve(value.replace(ROOT_DIR_TAG, CWD));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
shimFs: { default: true },
|
||||||
|
shimPath: { default: true},
|
||||||
|
fsProvider: { default: 'default'},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue