Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
// SPDX-License-Identifier: Apache-2.0
/**
* @module Aggregator/Artifacts
* @description Public re-exports for the artifacts bounded context.
* Provides artifact ordering, sanitization, and type definitions.
*/
export type { ArtifactContent, CleanedArtifactWithPath, ResolvedSection } from './types.js';
export type { ArtifactSection } from '../artifact-order.js';
export {
ARTIFACT_SECTIONS,
MANIFEST_SECTION_ID,
MANIFEST_SECTION_TITLE,
SUPPLEMENTARY_SECTION_ID,
SUPPLEMENTARY_SECTION_TITLE,
TRADECRAFT_SECTION_ID,
TRADECRAFT_SECTION_TITLE,
} from '../artifact-order.js';
export type { CleanArtifactOptions, CleanArtifactResult } from '../clean-artifact.js';
export {
cleanArtifact,
dedupMermaid,
demoteHeadings,
githubBlobUrl,
githubRawUrl,
resolveLink,
rewriteLinks,
stripArtifactMetadataPreamble,
stripBanners,
stripFrontMatter,
stripSpdxTags,
} from '../clean-artifact.js';
|