From 3a84116a1cd7920e40f2ede44bcfd3cf502c8894 Mon Sep 17 00:00:00 2001 From: Anton Arnautov Date: Thu, 8 Jan 2026 14:22:32 +0100 Subject: [PATCH 1/3] Initial commit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3b27729f..dfb3296ac 100644 --- a/package.json +++ b/package.json @@ -220,7 +220,7 @@ }, "scripts": { "clean": "rm -rf dist", - "build": "yarn clean && concurrently './scripts/copy-css.sh' 'yarn build-translations' 'vite build' 'tsc'", + "build": "yarn clean && concurrently './scripts/copy-css.sh' 'yarn build-translations' 'vite build' 'tsc --project tsconfig.lib.json'", "build-translations": "i18next-cli extract", "coverage": "jest --collectCoverage && codecov", "lint": "yarn prettier --list-different && yarn eslint && yarn validate-translations", From 35465e53e202992392ed9ce9ac8a94c314f5342e Mon Sep 17 00:00:00 2001 From: Anton Arnautov Date: Thu, 8 Jan 2026 14:24:58 +0100 Subject: [PATCH 2/3] Adjust PR template too --- .github/pull_request_template.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 50da0f136..42935924a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,5 +1,3 @@ - - ### 🎯 Goal _Describe why we are making this change_ From 95c690b6a69ab861a48ec063fc3b35c87f930d77 Mon Sep 17 00:00:00 2001 From: Anton Arnautov Date: Thu, 8 Jan 2026 14:51:11 +0100 Subject: [PATCH 3/3] Adjust job --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1423fc7f..7e6d08edb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,11 @@ jobs: - name: Build SDK run: yarn build + - name: Install example dependencies + working-directory: examples/vite + run: yarn install --frozen-lockfile + shell: bash + - name: Vercel Pull/Build/Deploy (Preview) working-directory: examples/vite if: ${{ github.ref_name != 'master' }}