Skip to content

Commit dfc4ec0

Browse files
authored
Merge pull request #139 from RooVetGit/chores/remove-ai-releases
Chores/remove ai releases
2 parents eda682c + 481b99b commit dfc4ec0

File tree

4 files changed

+19
-24
lines changed

4 files changed

+19
-24
lines changed

.changeset/changelog-config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const getReleaseLine = async (changeset) => {
2+
const [firstLine] = changeset.summary
3+
.split('\n')
4+
.map(l => l.trim())
5+
.filter(Boolean);
6+
return `- ${firstLine}`;
7+
};
8+
9+
const getDependencyReleaseLine = async () => {
10+
return '';
11+
};
12+
13+
const changelogFunctions = {
14+
getReleaseLine,
15+
getDependencyReleaseLine,
16+
};
17+
18+
module.exports = changelogFunctions;

.changeset/changelog-config.ts

Lines changed: 0 additions & 20 deletions
This file was deleted.

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3-
"changelog": "./changelog-config.ts",
3+
"changelog": "./changelog-config.js",
44
"commit": false,
55
"fixed": [],
66
"linked": [],

.changeset/package.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)