From fea6632945ee7adbbdcda8ea70fceed7b92b2278 Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Tue, 14 Oct 2025 18:01:59 +0200 Subject: [PATCH 1/3] feat: remove CircleCI configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This repository no longer uses CircleCI for CI/CD. Removing the .circleci directory to clean up the codebase. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .circleci/config.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 2ed79b1..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,35 +0,0 @@ -version: 2.1 - -parameters: - node_docker_image: - type: string - default: cimg/node:22.14.0-browsers - -jobs: - test_without_db: - working_directory: ~/repo - docker: - - image: << parameters.node_docker_image >> - steps: - - checkout - - run: yarn - - run: yarn build - - run: yarn test - - test_with_db: - working_directory: ~/repo - docker: - - image: << parameters.node_docker_image >> - - image: circleci/dynamodb - steps: - - checkout - - run: yarn - - run: yarn build - - run: yarn test - -workflows: - version: 2 - build_and_test: - jobs: - - test_with_db - - test_without_db From ddd60d51711a51b7b675c907386db42cdc34f100 Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Mon, 20 Oct 2025 17:13:26 +0200 Subject: [PATCH 2/3] Remove lint-staged section from package.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 8 -------- 1 file changed, 8 deletions(-) diff --git a/package.json b/package.json index 5032ba3..ce040a6 100644 --- a/package.json +++ b/package.json @@ -31,14 +31,6 @@ "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch" }, - "lint-staged": { - "*.{html,md,yml}": [ - "prettier --write" - ], - "*.{ts,js,json}": [ - "eslint --fix" - ] - }, "babel": { "extends": "@shelf/babel-config/backend" }, From 826dace68e3466275247f6c8e74223ccee54d44b Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Tue, 21 Oct 2025 11:46:43 +0200 Subject: [PATCH 3/3] Fix lint-staged: restore entire section (no CircleCI entry found) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package.json b/package.json index ce040a6..3152988 100644 --- a/package.json +++ b/package.json @@ -69,5 +69,13 @@ }, "publishConfig": { "access": "public" + }, + "lint-staged": { + "*.{html,md,yml}": [ + "prettier --write" + ], + "*.{ts,js,json}": [ + "eslint --fix" + ] } }