@odata2ts/odata2ts
Version:
Flexible generator to produce various TypeScript artefacts (from simple model interfaces to complete odata clients) from OData metadata files
8 lines • 329 B
JavaScript
import path from "path";
export function logFilePath(filePath) {
// we only show file paths relative to work dir of running process
const relativePath = path.relative(process.cwd(), filePath);
// beautify slashes for windows
return relativePath.split(path.sep).join("/");
}
//# sourceMappingURL=logFilePath.js.map