Merge branch 'fix/sitemap-noindex' — 사이트맵·목록에서 noindex 페이지 제외

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CEQ9auj65yJKk2MnWbtRqU
This commit is contained in:
Mina Choi 2026-09-11 14:09:16 +09:00
commit 548ec5c0c1
3 changed files with 39 additions and 4 deletions

View File

@ -23,6 +23,7 @@ import {
collectJsonLd, collectJsonLd,
homeMeta, homeMeta,
readBakedLastmod, readBakedLastmod,
readBakedNoindex,
readBakedTitle, readBakedTitle,
renderHead, renderHead,
renderLlmsTxt, renderLlmsTxt,
@ -766,9 +767,11 @@ function writeRootMachineFiles(outRoot: string, origin: string) {
.map((entry) => ({slug: entry.name, file: join(sitesDir, entry.name, 'index.html')})) .map((entry) => ({slug: entry.name, file: join(sitesDir, entry.name, 'index.html')}))
// index.html 이 없으면 발행이 끝나지 않은(또는 실패한) 디렉토리다. 사이트맵에 넣지 않는다. // index.html 이 없으면 발행이 끝나지 않은(또는 실패한) 디렉토리다. 사이트맵에 넣지 않는다.
.filter((entry) => existsSync(entry.file)) .filter((entry) => existsSync(entry.file))
.map((entry) => { // 제목·lastmod·noindex 가 같은 HTML 에서 나온다 — 파일은 한 번만 읽는다.
// 제목과 lastmod 가 같은 HTML 에서 나온다 — 파일은 한 번만 읽는다. .map((entry) => ({...entry, html: readFileSync(entry.file, 'utf-8')}))
const html = readFileSync(entry.file, 'utf-8'); // ★ noindex 를 선언한 페이지(목업·백업)는 싣지 않는다 — readBakedNoindex 주석 참조.
.filter((entry) => !readBakedNoindex(entry.html))
.map(({html, ...entry}) => {
return { return {
// ★ 끝 슬래시를 붙이지 않는다. 페이지의 canonical 은 `/s/<slug>` 다(shared/lib/slug.ts // ★ 끝 슬래시를 붙이지 않는다. 페이지의 canonical 은 `/s/<slug>` 다(shared/lib/slug.ts
// publishUrl). 사이트맵이 `/s/<slug>/` 로 어긋나 있던 동안 서치콘솔은 제출한 URL 을 // publishUrl). 사이트맵이 `/s/<slug>/` 로 어긋나 있던 동안 서치콘솔은 제출한 URL 을

View File

@ -10,7 +10,7 @@
import {describe, expect, it} from 'vitest'; import {describe, expect, it} from 'vitest';
import {MOONLIGHT_STAY_PAYLOAD} from '../fixtures/moonlight-stay'; import {MOONLIGHT_STAY_PAYLOAD} from '../fixtures/moonlight-stay';
import {readBakedLastmod, readBakedTitle} from './directory'; import {readBakedLastmod, readBakedNoindex, readBakedTitle} from './directory';
import {renderHead} from './head'; import {renderHead} from './head';
import {homeMeta} from './meta'; import {homeMeta} from './meta';
@ -44,3 +44,20 @@ describe('readBakedTitle', () => {
expect(readBakedTitle('<html><head></head></html>')).toBe(''); expect(readBakedTitle('<html><head></head></html>')).toBe('');
}); });
}); });
describe('readBakedNoindex', () => {
it('발행본 head 는 index 다 — 사이트맵에 남는다', () => {
expect(readBakedNoindex(bakedHead())).toBe(false);
});
it('noindex 를 선언한 목업은 걸러진다', () => {
const mockup =
'<meta name="robots" content="noindex, follow, max-snippet:-1, max-image-preview:large" />';
expect(readBakedNoindex(mockup)).toBe(true);
expect(readBakedNoindex('<meta name="robots" content="none" />')).toBe(true);
});
it('robots 메타가 없으면 색인 대상으로 친다', () => {
expect(readBakedNoindex('<html><head><title>x</title></head></html>')).toBe(false);
});
});

View File

@ -20,6 +20,21 @@ export function readBakedTitle(html: string): string {
return match ? match[1].trim() : ''; return match ? match[1].trim() : '';
} }
/**
* `noindex` . ·`/s` ·llms.txt .
*
* `out/s/` payload ·(`stay2` · `stay3` · `*.old`) ,
* . (`/s/stay`) · canonical
* , (2026-09-11)
* "스테이머뭄" . noindex
* "제출된 URL 에 noindex" .
* (`.old` ) .
*/
export function readBakedNoindex(html: string): boolean {
const match = /<meta name="robots" content="([^"]*)"/.exec(html);
return match ? /(^|[\s,])(noindex|none)([\s,]|$)/.test(match[1]) : false;
}
/** /**
* `lastmod` ** `dateModified` ** . * `lastmod` ** `dateModified` ** .
* *