GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
632 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveProjectPath = void 0;
const path = require("path");
const detectProjectRoot_1 = require("./detectProjectRoot");
const error_1 = require("./error");
function resolveProjectPath(options, filePath) {
const projectRoot = (0, detectProjectRoot_1.detectProjectRoot)(options);
if (!projectRoot) {
throw new error_1.FirebaseError("Expected to be in a project directory, but none was found.", {
exit: 2,
});
}
return path.resolve(projectRoot, filePath);
}
exports.resolveProjectPath = resolveProjectPath;