MCPcopy Index your code
hub / github.com/getsentry/sentry-javascript / processDetailsContent

Function processDetailsContent

scripts/generate-changelog.ts:100–109  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

98 };
99
100 const processDetailsContent = (): void => {
101 for (const line of detailsContent) {
102 const trimmed = line.trim();
103 if (trimmed.startsWith('-') && trimmed.includes('(#')) {
104 const entry = createEntry(trimmed, 'internal');
105 addEntry(entry);
106 }
107 }
108 detailsContent = [];
109 };
110
111 for (const line of unreleasedLines) {
112 // Skip undefined/null lines

Callers 1

parseChangelogFunction · 0.85

Calls 2

createEntryFunction · 0.85
addEntryFunction · 0.85

Tested by

no test coverage detected