From a4bf9511889467f94ab306f98e5b45f9e1087a0c Mon Sep 17 00:00:00 2001 From: coliff Date: Tue, 24 Jun 2025 12:02:00 +0900 Subject: [PATCH] Release v1.11.1 --- .github/workflows/pubish.yml | 33 +++++++++++++++++++++++++++++++++ htmlhint/CHANGELOG.md | 4 +++- htmlhint/package-lock.json | 4 ++-- htmlhint/package.json | 2 +- 4 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/pubish.yml diff --git a/.github/workflows/pubish.yml b/.github/workflows/pubish.yml new file mode 100644 index 0000000..1ea17ae --- /dev/null +++ b/.github/workflows/pubish.yml @@ -0,0 +1,33 @@ +on: + push: + tags: + - "*" + workflow_dispatch: + +name: Deploy Extension +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 22 + + - run: npm ci + + - run: npm run build + + - run: npm run package + + - name: Publish to Open VSX Registry + uses: HaaLeo/publish-vscode-extension@v2 + with: + pat: ${{ secrets.OPEN_VSX_TOKEN }} + + - name: Publish to Visual Studio Marketplace + uses: HaaLeo/publish-vscode-extension@v2 + with: + pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} + registryUrl: https://marketplace.visualstudio.com diff --git a/htmlhint/CHANGELOG.md b/htmlhint/CHANGELOG.md index be6669e..3fc7f73 100644 --- a/htmlhint/CHANGELOG.md +++ b/htmlhint/CHANGELOG.md @@ -2,9 +2,11 @@ All notable changes to the "vscode-htmlhint" extension will be documented in this file. -### v1.11.1 (2025-06-23) +### v1.11.1 (2025-06-24) - Add autofix for `tag-no-obsolete` rule +- Minor optimizations and code cleanup +- Reduced package size by 30% ### v1.11.0 (2025-06-20) diff --git a/htmlhint/package-lock.json b/htmlhint/package-lock.json index e53b1a8..79b8858 100644 --- a/htmlhint/package-lock.json +++ b/htmlhint/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-htmlhint", - "version": "1.11.0", + "version": "1.11.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-htmlhint", - "version": "1.11.0", + "version": "1.11.1", "bundleDependencies": [ "vscode-languageclient", "htmlhint", diff --git a/htmlhint/package.json b/htmlhint/package.json index f284426..0a3d98e 100644 --- a/htmlhint/package.json +++ b/htmlhint/package.json @@ -3,7 +3,7 @@ "displayName": "HTMLHint", "description": "VS Code integration for HTMLHint - A Static Code Analysis Tool for HTML", "icon": "images/icon.png", - "version": "1.11.0", + "version": "1.11.1", "publisher": "HTMLHint", "galleryBanner": { "color": "#333333",