From 5bfebeb62e62be132ecfec5a18111c085b474490 Mon Sep 17 00:00:00 2001 From: a8trejo Date: Mon, 16 Dec 2024 15:56:06 -0800 Subject: [PATCH] Changing .changeset/changelog-config.js to js --- .changeset/changelog-config.js | 18 ++++++++++++++++++ .changeset/changelog-config.ts | 20 -------------------- .changeset/config.json | 2 +- .changeset/package.json | 3 --- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 22 insertions(+), 27 deletions(-) create mode 100644 .changeset/changelog-config.js delete mode 100644 .changeset/changelog-config.ts delete mode 100644 .changeset/package.json diff --git a/.changeset/changelog-config.js b/.changeset/changelog-config.js new file mode 100644 index 0000000..6600ba3 --- /dev/null +++ b/.changeset/changelog-config.js @@ -0,0 +1,18 @@ +const getReleaseLine = async (changeset) => { + const [firstLine] = changeset.summary + .split('\n') + .map(l => l.trim()) + .filter(Boolean); + return `- ${firstLine}`; +}; + +const getDependencyReleaseLine = async () => { + return ''; +}; + +const changelogFunctions = { + getReleaseLine, + getDependencyReleaseLine, +}; + +module.exports = changelogFunctions; \ No newline at end of file diff --git a/.changeset/changelog-config.ts b/.changeset/changelog-config.ts deleted file mode 100644 index 0ad2388..0000000 --- a/.changeset/changelog-config.ts +++ /dev/null @@ -1,20 +0,0 @@ -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; \ No newline at end of file diff --git a/.changeset/config.json b/.changeset/config.json index 0d15d8d..afe84d3 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,6 +1,6 @@ { "$schema": "https://unpkg.com/@changesets/config@3.0.4/schema.json", - "changelog": "./changelog-config.ts", + "changelog": "./changelog-config.js", "commit": false, "fixed": [], "linked": [], diff --git a/.changeset/package.json b/.changeset/package.json deleted file mode 100644 index aead43d..0000000 --- a/.changeset/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "type": "module" -} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 30da4c0..04f216d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "roo-cline", - "version": "2.2.12", + "version": "2.2.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "roo-cline", - "version": "2.2.12", + "version": "2.2.13", "dependencies": { "@anthropic-ai/bedrock-sdk": "^0.10.2", "@anthropic-ai/sdk": "^0.26.0", diff --git a/package.json b/package.json index 83bd01c..d12cca3 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Roo Cline", "description": "A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.", "publisher": "RooVeterinaryInc", - "version": "2.2.12", + "version": "2.2.13", "icon": "assets/icons/rocket.png", "galleryBanner": { "color": "#617A91",