feat: publish Git collaboration and AI development research
This commit is contained in:
+15
-1
@@ -2,7 +2,21 @@ import { access, readFile, readdir } from "node:fs/promises";
|
||||
import { join } from "node:path";
|
||||
|
||||
const root = new URL("../dist/", import.meta.url);
|
||||
const required = ["index.html", "archive/index.html", "method/index.html", "articles/research-publishing-method/index.html", "rss.xml", "sitemap.xml"];
|
||||
const required = [
|
||||
"index.html",
|
||||
"archive/index.html",
|
||||
"method/index.html",
|
||||
"articles/research-publishing-method/index.html",
|
||||
"articles/git-collaboration-ai-development/index.html",
|
||||
"articles/git-collaboration-ai-development/git-collaboration-flow.png",
|
||||
"articles/git-collaboration-ai-development/ai-responsibility-lanes.png",
|
||||
"articles/git-collaboration-ai-development/ai-project-workflow-positions.png",
|
||||
"articles/git-collaboration-ai-development/change-evidence-state.svg",
|
||||
"articles/git-collaboration-ai-development/test-selection-funnel.svg",
|
||||
"articles/git-collaboration-ai-development/agent-trust-boundary.svg",
|
||||
"rss.xml",
|
||||
"sitemap.xml"
|
||||
];
|
||||
for (const path of required) await access(new URL(path, root));
|
||||
|
||||
async function walk(path) {
|
||||
|
||||
Reference in New Issue
Block a user