Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 11.1.1
version: 11.18.0

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -38,10 +38,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

# NOTE: `pnpm lint` currently has 12 pre-existing errors unrelated
# to the test/CI setup (mostly `any` types and `set-state-in-effect`
# warnings). It runs but does not fail the build until those are
# cleaned up. Switch to `run: pnpm lint` once they're fixed.
# NOTE: `pnpm lint` currently has 21 pre-existing errors unrelated
# to the test/CI setup (10 `any` types, 7 `set-state-in-effect`, the
# rest split across exhaustive-deps, immutability and
# only-export-components). It runs but does not fail the build until
# those are cleaned up. Switch to `run: pnpm lint` once they're fixed.
- name: Lint (non-blocking)
run: pnpm lint || true

Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "timelock-ui",
"private": true,
"version": "1.1.2",
"version": "1.1.3",
"description": "Minimal UI to operate OpenZeppelin TimelockController instances",
"type": "module",
"packageManager": "pnpm@11.1.1",
"packageManager": "pnpm@11.18.0",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
Expand All @@ -16,35 +16,35 @@
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.2.11",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-query": "^5.100.9",
"lucide-react": "^1.14.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.0",
"tailwindcss": "^4.2.4",
"viem": "^2.48.8",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-query": "^5.101.4",
"lucide-react": "^1.26.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router-dom": "^7.18.1",
"tailwindcss": "^4.3.3",
"viem": "^2.55.8",
"wagmi": "^2.19.5"
},
"overrides": {
"qr": "0.5.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/node": "^25.9.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vitest": "^4.1.5"
"typescript": "~6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}
Loading
Loading