From 5a1f6d8c762bc7d229a25d1c027c2c95b1f90931 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Tue, 24 Mar 2026 19:42:12 +0000 Subject: [PATCH] fix(vscode-template): update VS Code schema matching to use .smartconfig.json --- assets/templates/vscode/.vscode/settings.json | 2 +- changelog.md | 5 +++++ ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/assets/templates/vscode/.vscode/settings.json b/assets/templates/vscode/.vscode/settings.json index 3648eaa..7b514e3 100644 --- a/assets/templates/vscode/.vscode/settings.json +++ b/assets/templates/vscode/.vscode/settings.json @@ -1,7 +1,7 @@ { "json.schemas": [ { - "fileMatch": ["/npmextra.json"], + "fileMatch": ["/.smartconfig.json"], "schema": { "type": "object", "properties": { diff --git a/changelog.md b/changelog.md index 49cee0d..01ab4cb 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-03-24 - 2.13.13 - fix(vscode-template) +update VS Code schema matching to use .smartconfig.json + +- Changes the VS Code template settings so the JSON schema applies to /.smartconfig.json instead of /npmextra.json. + ## 2026-03-24 - 2.13.12 - fix(mod_format) render format templates through smartscaf before comparing generated files diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 6b8a110..f26cb09 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/cli', - version: '2.13.12', + version: '2.13.13', description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.' }