From b96823f2431f0bc572f968d8650f4df968228da5 Mon Sep 17 00:00:00 2001 From: Geordie Everitt Date: Tue, 23 Jun 2026 16:49:03 +0200 Subject: [PATCH] Release 2.1.5: package front-matter crash fix for Marketplace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version 2.1.4 -> 2.1.5 so the patched build (issue #81 front-matter crash on VS Code 1.121+) can be uploaded to the Marketplace, which rejects re-uploads of an existing version. Also remove the npm `files` allowlist from package.json: current @vscode/vsce refuses to package when both `.vscodeignore` and a `files` property are present, and `.vscodeignore` is the correct (and complete) strategy for the vsix — the `files: ["assets/**"]` entry was wrong for the extension anyway (it would have excluded the built dist/ output). Co-Authored-By: Claude Opus 4.8 --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index a96484d..432801e 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Adobe Markdown Authoring extension for Visual Studio Code", "description": "All-in-one Adobe Flavored Markdown document authoring extension for Visual Studio Code.", "publisher": "AdobeExl", - "version": "2.1.4", + "version": "2.1.5", "engines": { "vscode": "^1.74.0" }, @@ -23,9 +23,6 @@ "onLanguage:markdown" ], "main": "./dist/extension.js", - "files": [ - "assets/**/*" - ], "contributes": { "markdown.previewStyles": [ "./assets/styles/spectrum.css",