Skip to content

Commit 64dc1bc

Browse files
Merge pull request #318 from BootNodeDev/develop
chore: merge latest changes into staging
2 parents a81795d + fdb0c31 commit 64dc1bc

24 files changed

+334
-326
lines changed

.eslintrc.cjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ module.exports = {
22
root: true,
33
env: { browser: true, es2020: true },
44
ignorePatterns: [
5+
'src/hooks/generated.ts',
6+
'src/subgraphs/queries/aave',
7+
'src/subgraphs/queries/uniswap',
58
'**/*.css',
69
'**/*.html',
710
'**/*.scss',
@@ -12,6 +15,7 @@ module.exports = {
1215
'docs',
1316
'logs',
1417
'node_modules',
18+
'pnpm-lock.yaml',
1519
'src/hooks/generated.ts',
1620
'src/routeTree.gen.ts',
1721
'src/subgraphs/gql',
@@ -90,6 +94,9 @@ module.exports = {
9094
],
9195
'@typescript-eslint/no-explicit-any': 'warn',
9296
'@typescript-eslint/no-unused-vars': 'warn',
97+
"@typescript-eslint/consistent-type-imports": ["error", {
98+
"prefer": "type-imports"
99+
}],
93100
'no-use-before-define': 'off',
94101
'@typescript-eslint/no-use-before-define': ['error', { functions: false }],
95102
'jsx-a11y/label-has-associated-control': 'warn',

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ about: Create a report to help us improve
44
title: ''
55
labels: bug
66
assignees: ''
7-
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: enhancement
66
assignees: ''
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/dependabot.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "pnpm"
3+
- package-ecosystem: "npm"
44
directory: "/"
55
schedule:
66
interval: "monthly"
@@ -19,4 +19,3 @@ updates:
1919
- "paterson1"
2020
- "tloffler"
2121
- "gabitoesmiapodo"
22-

.husky/pre-push

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/sh
2+
3+
# Run tsc
4+
echo "Running TS checks..."
5+
pnpm tsc --pretty --noEmit --verbatimModuleSyntax
6+
7+
# Check result
8+
if [ $? -ne 0 ]; then
9+
echo "TS checks failed. Push aborted."
10+
exit 1
11+
fi
12+
13+
echo "TS checks passed. Proceeding with push."
14+
exit 0

.lintstagedrc.cjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ module.exports = {
33
'prettier --write --ignore-unknown',
44
'eslint --fix',
55
'stylelint --fix',
6-
'tsc-files --noEmit',
76
'vitest related --run --coverage=false',
87
],
98
}

.prettierignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.github
12
**/*.css
23
**/*.html
34
**/*.scss
@@ -9,7 +10,9 @@ dist-ssr
910
docs
1011
logs
1112
node_modules
13+
pnpm-lock.yaml
1214
src/hooks/generated.ts
1315
src/routeTree.gen.ts
1416
src/subgraphs/gql
15-
src/subgraphs/gql
17+
src/subgraphs/queries/aave
18+
src/subgraphs/queries/uniswap

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dappbooster",
33
"private": true,
4-
"version": "0.9.10",
4+
"version": "0.9.11",
55
"type": "module",
66
"scripts": {
77
"build": "tsc --noEmit && vite build",
@@ -29,7 +29,7 @@
2929
"@faceless-ui/modal": "3.0.0-beta.2",
3030
"@lifi/sdk": "^3.0.1",
3131
"@t3-oss/env-core": "^0.10.1",
32-
"@tanstack/react-query": "^5.36.0",
32+
"@tanstack/react-query": "^5.56.2",
3333
"@tanstack/react-router": "^1.32.5",
3434
"@tanstack/react-virtual": "^3.7.0",
3535
"@uniswap/default-token-list": "^11.19.0",
@@ -42,7 +42,7 @@
4242
"react-error-boundary": "^4.0.13",
4343
"react-hot-toast": "^2.4.1",
4444
"react-jazzicon": "^1.0.4",
45-
"react-number-format": "^5.4.0",
45+
"react-number-format": "^5.4.2",
4646
"styled-components": "^6.1.13",
4747
"use-debounce": "^10.0.1",
4848
"viem": "~2.10.9",
@@ -59,9 +59,9 @@
5959
"@tanstack/router-devtools": "^1.32.5",
6060
"@tanstack/router-vite-plugin": "^1.32.2",
6161
"@testing-library/jest-dom": "^6.4.5",
62-
"@testing-library/react": "^16.0.0",
62+
"@testing-library/react": "^16.0.1",
6363
"@testing-library/user-event": "^14.5.2",
64-
"@types/react": "^18.3.2",
64+
"@types/react": "^18.3.8",
6565
"@types/react-dom": "^18.3.0",
6666
"@typescript-eslint/eslint-plugin": "^7.17.0",
6767
"@typescript-eslint/parser": "^7.17.0",
@@ -75,7 +75,7 @@
7575
"eslint-plugin-import": "^2.29.1",
7676
"eslint-plugin-jsx-a11y": "^6.9.0",
7777
"eslint-plugin-no-relative-import-paths": "^1.5.5",
78-
"eslint-plugin-react": "^7.35.0",
78+
"eslint-plugin-react": "^7.36.1",
7979
"eslint-plugin-react-hooks": "^4.6.2",
8080
"eslint-plugin-react-refresh": "^0.4.9",
8181
"eslint-plugin-sort-destructure-keys": "^2.0.0",
@@ -87,7 +87,6 @@
8787
"stylelint": "^16.7.0",
8888
"stylelint-config-standard": "^36.0.1",
8989
"ts-node": "^10.9.2",
90-
"tsc-files": "^1.1.4",
9190
"typedoc": "^0.26.5",
9291
"typedoc-plugin-inline-sources": "^1.0.2",
9392
"typedoc-plugin-missing-exports": "^3.0.0",

0 commit comments

Comments
 (0)