From ba910027449d5b8cbb5f6bfe0d27deb8c0028bda Mon Sep 17 00:00:00 2001 From: piratf Date: Mon, 2 Mar 2026 18:04:34 +0800 Subject: [PATCH] chore: remove format:check from vscode:prepublish and bump version to 0.3.0 - Remove npm run format:check from vscode:prepublish script - Bump version from 0.1.3 to 0.3.0 The format check in prepublish causes issues when semantic-release automatically modifies files like .releaserc.json and CHANGELOG.md during the release process, as these changes may not conform to Prettier formatting before the prepublish script runs. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 10b06bf..21decf7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "context-editor", "displayName": "Context Editor", "description": "Dedicated visual editor for Claude Code. Orchestrate nested CLAUDE.md trees, MCP servers, and global project settings in a unified VS Code sidebar.", - "version": "0.1.3", + "version": "0.3.0", "publisher": "piratf", "license": "MPL-2.0", "icon": "resources/icon.png", @@ -166,7 +166,7 @@ } }, "scripts": { - "vscode:prepublish": "npm run compile && npm run lint && npm run format:check && npm test", + "vscode:prepublish": "npm run compile && npm run lint && npm test", "compile": "rm -rf out/ && tsc -p ./ && cp -r resources out/", "watch": "tsc -watch -p ./", "pretest": "npm run compile && npm run lint",