update debug build

This commit is contained in:
Nick Cipollo
2022-10-04 08:09:17 -04:00
parent f3ea29dca7
commit b072aaafe1
4 changed files with 27 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ exports.PathNormalizer = void 0;
const path_1 = __importDefault(require("path"));
class PathNormalizer {
static normalizePath(pathString) {
return path_1.default.resolve(pathString).split(path_1.default.sep).join("/");
return pathString.split(path_1.default.sep).join("/");
}
}
exports.PathNormalizer = PathNormalizer;