Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
26 lines
1.1 KiB
JavaScript
26 lines
1.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "absolutePathToPage", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return absolutePathToPage;
|
|
}
|
|
});
|
|
const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
|
|
const _ensureleadingslash = require("./ensure-leading-slash");
|
|
const _normalizepathsep = require("./normalize-path-sep");
|
|
const _path = /*#__PURE__*/ _interop_require_default._(require("../isomorphic/path"));
|
|
const _removepagepathtail = require("./remove-page-path-tail");
|
|
const _getmetadataroute = require("../../../lib/metadata/get-metadata-route");
|
|
function absolutePathToPage(pagePath, options) {
|
|
const isAppDir = options.pagesType === 'app';
|
|
const page = (0, _removepagepathtail.removePagePathTail)((0, _normalizepathsep.normalizePathSep)((0, _ensureleadingslash.ensureLeadingSlash)(_path.default.relative(options.dir, pagePath))), {
|
|
extensions: options.extensions,
|
|
keepIndex: options.keepIndex
|
|
});
|
|
return isAppDir ? (0, _getmetadataroute.normalizeMetadataRoute)(page) : page;
|
|
}
|
|
|
|
//# sourceMappingURL=absolute-path-to-page.js.map
|