From d027e259f039aa642c986c97c2eebb49906de839 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 30 Sep 2025 23:16:27 +0300 Subject: [PATCH 1/2] Fix incorrect syntax in package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 910d36a..0810bd8 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "typescript-eslint": "8.35.1" }, "engines": { - "node": ">=18.11.0 >=16.19.0", + "node": ">=18.11.0", "deno": ">=2" } -} \ No newline at end of file +} From 5688e14b601ad77eaebf1e1e50a101a71f4ca016 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 30 Sep 2025 23:35:33 +0300 Subject: [PATCH 2/2] Look at package.json sate before publish --- .github/workflows/publish-on-main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish-on-main.yml b/.github/workflows/publish-on-main.yml index 41e96b1..ffad54f 100644 --- a/.github/workflows/publish-on-main.yml +++ b/.github/workflows/publish-on-main.yml @@ -102,6 +102,9 @@ jobs: run: | npm config set //registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN} + - name: Show package.json tail + run: cat -A package.json | tail -20 + - name: Publish to npm env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}