From 403d4f5bf0971430a66ff64e817f732020827cf6 Mon Sep 17 00:00:00 2001 From: Tyler Slaton Date: Tue, 3 Mar 2026 12:34:36 -0500 Subject: [PATCH 1/3] chore: release 0.1.0 Signed-off-by: Tyler Slaton --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a4048b95..ff83c62c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@copilotkit/mock-openai", - "version": "0.0.0", + "version": "0.1.0", "description": "Deterministic mock OpenAI server for testing", "license": "MIT", "packageManager": "pnpm@10.28.2", From c0d39260f6d70b91fdf8caf28002e2a4d9d8462d Mon Sep 17 00:00:00 2001 From: Tyler Slaton Date: Tue, 3 Mar 2026 12:40:23 -0500 Subject: [PATCH 2/3] fix(commitlint): rename commitlint.config.js -> commitlint.config.cjs Signed-off-by: Tyler Slaton --- commitlint.config.js => commitlint.config.cjs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename commitlint.config.js => commitlint.config.cjs (100%) diff --git a/commitlint.config.js b/commitlint.config.cjs similarity index 100% rename from commitlint.config.js rename to commitlint.config.cjs From 187a602d3a9d08586f52264ef23d3a6bda9e2284 Mon Sep 17 00:00:00 2001 From: Tyler Slaton Date: Tue, 3 Mar 2026 12:43:22 -0500 Subject: [PATCH 3/3] fix(eslint): also lint cjs files Signed-off-by: Tyler Slaton --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index ad22de73..bb7e36a0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -7,7 +7,7 @@ export default tseslint.config( prettier, { ignores: ["dist/", "node_modules/", "fixtures/"] }, { - files: ["*.config.{js,mjs,ts}", "commitlint.config.js"], + files: ["*.config.{js,mjs,ts,cjs}"], languageOptions: { globals: { module: "readonly", require: "readonly" } }, }, );