From ae3bd5338c5552bda7c519576305a34d54bd9040 Mon Sep 17 00:00:00 2001 From: Vitalii Dudnik Date: Mon, 11 May 2026 10:02:54 +0300 Subject: [PATCH 1/2] chore: update Node.js version requirement to 24 and upgrade GitHub Actions to v6 in release workflow --- .github/workflows/release.yml | 20 ++++++++++---------- package.json | 3 +++ 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2058feb..d0c0f09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,10 @@ jobs: if: "!contains(github.event.head_commit.message, 'GITBOOK')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 cache: 'npm' - run: npm ci - run: npm run lint:ci @@ -41,12 +41,12 @@ jobs: contents: write id-token: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 cache: 'npm' registry-url: https://registry.npmjs.org/ - run: | @@ -68,12 +68,12 @@ jobs: contents: write id-token: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 cache: 'npm' registry-url: https://registry.npmjs.org/ - run: | @@ -92,7 +92,7 @@ jobs: needs: [ release ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - run: | diff --git a/package.json b/package.json index 7d8ef2c..e7fc78f 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,9 @@ "homepage": "https://vueless.com", "license": "MIT", "type": "module", + "engines": { + "node": ">=24" + }, "publishConfig": { "access": "public" }, From 6a20aa0f005fe519b58b40631e4b60afebe1a1ee Mon Sep 17 00:00:00 2001 From: itsJohnnyGrid Date: Mon, 11 May 2026 09:18:41 +0000 Subject: [PATCH 2/2] Release v1.0.4-beta.0 / [no ci] --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3966dfc..671fafa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "create-vueless", - "version": "1.0.3", + "version": "1.0.4-beta.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "create-vueless", - "version": "1.0.3", + "version": "1.0.4-beta.0", "license": "MIT", "dependencies": { "degit": "^2.8.4", diff --git a/package.json b/package.json index e7fc78f..f757b53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "create-vueless", - "version": "1.0.3", + "version": "1.0.4-beta.0", "description": "A tool to quickly start a Vue project with Vueless UI.", "author": "Johnny Grid (https://vueless.com)", "homepage": "https://vueless.com",