16 lines
446 B
TypeScript
16 lines
446 B
TypeScript
import {
|
|
projects,
|
|
publicRecords,
|
|
releases,
|
|
} from "../src/features/tech-log/adapters/static/public-content.ts";
|
|
import { writeTechLogServingArtifact } from "./lib/tech-log-serving-artifact.ts";
|
|
import { createTechLogServingContract } from "./lib/tech-log-serving-contract.ts";
|
|
|
|
const contract = createTechLogServingContract({
|
|
projects,
|
|
publicRecords,
|
|
releases,
|
|
});
|
|
|
|
await writeTechLogServingArtifact({ distRoot: "dist", contract });
|