From 1ef9982f68c45bb84326ca13d0f61a3a7e7a07f0 Mon Sep 17 00:00:00 2001 From: asafMasa Date: Thu, 18 Jun 2026 17:43:46 +0300 Subject: [PATCH] fix: publish workflow fixed --- .github/workflows/publish.yaml | 1 + tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 8bda0f82..8adbc456 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -19,4 +19,5 @@ jobs: uses: MapColonies/shared-workflows/actions/init-npm@init-npm-v1 with: node-version: '20.x' + - run: npm i -g npm@11.17.0 - run: npm publish --access public diff --git a/tsconfig.json b/tsconfig.json index a942ce14..dc15f6c3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { "target": "ES6", - "lib": ["es6"], + "lib": ["es6", "dom"], + "skipLibCheck": true, "module": "commonjs", "experimentalDecorators": true, "declaration": true,