From 8766d5420ad4287b503b8eb33dbbb010c15c4705 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Wed, 24 Jun 2026 12:55:10 -0500 Subject: [PATCH] fix(release): restore literal em-dash in package.json description (prettier) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 0.0.46 version bump escaped the em-dash to \u2014, failing the format:check CI step. Prettier normalizes it back to the literal —. Co-Authored-By: Claude Opus 4.8 --- packages/mosaic/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mosaic/package.json b/packages/mosaic/package.json index a20b286..7aef1a9 100644 --- a/packages/mosaic/package.json +++ b/packages/mosaic/package.json @@ -6,7 +6,7 @@ "url": "https://git.mosaicstack.dev/mosaicstack/stack.git", "directory": "packages/mosaic" }, - "description": "Mosaic agent framework \u2014 installation wizard and meta package", + "description": "Mosaic agent framework — installation wizard and meta package", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts",