Merge pull request #133 from RooVetGit/chores/remove-ai-releases

Remove AI releases
This commit is contained in:
Abel Trejo Pineda
2024-12-16 17:20:25 -06:00
committed by GitHub
8 changed files with 123 additions and 226 deletions

View File

@@ -0,0 +1,20 @@
import { ChangelogFunctions } from '@changesets/types';
const getReleaseLine: ChangelogFunctions['getReleaseLine'] = async (changeset) => {
const [firstLine] = changeset.summary
.split('\n')
.map(l => l.trim())
.filter(Boolean);
return `- ${firstLine}`;
};
const getDependencyReleaseLine: ChangelogFunctions['getDependencyReleaseLine'] = async () => {
return '';
};
const changelogFunctions: ChangelogFunctions = {
getReleaseLine,
getDependencyReleaseLine,
};
export default changelogFunctions;

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.4/schema.json",
"changelog": "@changesets/cli/changelog",
"changelog": "./changelog-config.ts",
"commit": false,
"fixed": [],
"linked": [],