diff --git a/.changeset/polite-planets-knock.md b/.changeset/polite-planets-knock.md index 5bb09da48..9468ffa8a 100644 --- a/.changeset/polite-planets-knock.md +++ b/.changeset/polite-planets-knock.md @@ -2,9 +2,9 @@ 'typedoc-plugin-markdown': major --- -- Removal of handlebars -- MDX 2 support as standard -- Updated directory structure to follow the project module structure +- Removal of handlebars. +- MDX 2 support as standard. +- Updated directory structure to follow the project module structure. - Ability to choose which symbols should be rendered to a single doc, with the ability to add all symbols into single doc. - Ability to choose between list/table styles. - UI improvements. diff --git a/scripts/changesets/changelog.js b/scripts/changesets/changelog.js index 6f6899e41..b04edcbe6 100644 --- a/scripts/changesets/changelog.js +++ b/scripts/changesets/changelog.js @@ -1,15 +1,14 @@ const getReleaseLine = async (changeset, _type) => { - const [firstLine, ...futureLines] = changeset.summary + /*const [firstLine, ...futureLines] = changeset.summary .split('\n') .map((l) => l.trimRight()); - let returnVal = `- ${firstLine}`; + let returnVal = `- ${firstLine}`; if (futureLines.length > 0) { returnVal += `\n- ${futureLines.map((l) => ` ${l}`).join('\n')}`; - } - - return returnVal; + }*/ + return changeset.summary; }; const getDependencyReleaseLine = async (changesets, dependenciesUpdated) => {