Skip to content

Commit

Permalink
fix: pdate
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jan 21, 2023
1 parent 0a6b77a commit a8d9558
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .changeset/polite-planets-knock.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
9 changes: 4 additions & 5 deletions scripts/changesets/changelog.js
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down

0 comments on commit a8d9558

Please sign in to comment.