sfdx-experiences-plugin
Version:
SFDX plugin to manage ExperienceBundle metadata
14 lines • 483 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
/**
* Returns the path to the routes directory for the given bundle path.
*
* @param {string} bundlePath Path to the bundle.
* @returns {string} Path to the routes directory of the bundle.
*/
function getRoutesPath(bundlePath) {
return path_1.resolve(bundlePath, 'routes');
}
exports.default = getRoutesPath;
//# sourceMappingURL=get-routes-path.js.map
;