Skip to content

Commit 8e7b1d2

Browse files
ci(release): publish latest release
1 parent ae3dd1a commit 8e7b1d2

File tree

2,063 files changed

+35139
-19446
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,063 files changed

+35139
-19446
lines changed

.bun-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.1
1+
1.3.11

.depcheckrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ ignores: [
1414
'utf-8-validate',
1515
'semver',
1616
'typanion',
17-
'@biomejs/biome',
1817
"@nx/js",
1918
"@nx/workspace",
2019
"@swc/helpers",

.eslintignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ test-results/
1313
scripts/dist
1414
tools/uniswap-nx/dist
1515

16-
# next.js
16+
# build output
1717
.next/
1818
out/
19+
bin/
1920
build
2021

2122
# React Router
@@ -89,6 +90,7 @@ CLAUDE.local.md
8990
# cursor
9091
.cursor/mcp.json
9192
.cursor/rules/local-workflow.mdc
93+
.cursor/*.log
9294

9395
# lefthook
9496
.lefthook/
@@ -103,3 +105,4 @@ CLAUDE.local.md
103105

104106
# temporary files
105107
/tmp/
108+
.env*.local

.husky/post-checkout

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ call_lefthook()
3939
elif bundle exec lefthook -h >/dev/null 2>&1
4040
then
4141
bundle exec lefthook "$@"
42-
elif bun lefthook -h >/dev/null 2>&1
42+
elif yarn lefthook -h >/dev/null 2>&1
4343
then
44-
bun lefthook "$@"
44+
yarn lefthook "$@"
4545
elif pnpm lefthook -h >/dev/null 2>&1
4646
then
4747
pnpm lefthook "$@"

.husky/pre-commit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ call_lefthook()
3939
elif bundle exec lefthook -h >/dev/null 2>&1
4040
then
4141
bundle exec lefthook "$@"
42-
elif bun lefthook -h >/dev/null 2>&1
42+
elif yarn lefthook -h >/dev/null 2>&1
4343
then
44-
bun lefthook "$@"
44+
yarn lefthook "$@"
4545
elif pnpm lefthook -h >/dev/null 2>&1
4646
then
4747
pnpm lefthook "$@"

.husky/prepare-commit-msg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ call_lefthook()
3939
elif bundle exec lefthook -h >/dev/null 2>&1
4040
then
4141
bundle exec lefthook "$@"
42-
elif bun lefthook -h >/dev/null 2>&1
42+
elif yarn lefthook -h >/dev/null 2>&1
4343
then
44-
bun lefthook "$@"
44+
yarn lefthook "$@"
4545
elif pnpm lefthook -h >/dev/null 2>&1
4646
then
4747
pnpm lefthook "$@"

.mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414
"-y",
1515
"playwriter@latest"
1616
]
17+
},
18+
"chrome-devtools": {
19+
"command": "bunx",
20+
"args": [
21+
"chrome-devtools-mcp@latest",
22+
"--autoConnect",
23+
"--channel=beta"
24+
]
1725
}
1826
}
1927
}

.nxignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@ node_modules
3939
docs
4040
*.md
4141

42-
# Experimental/prototype labs (excluded from CI)
43-
labs/**
42+
# Ignore labs (experimental projects)
43+
labs/
44+

.oxfmtrc.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"$schema": "./node_modules/oxfmt/configuration_schema.json",
3+
"printWidth": 120,
4+
"tabWidth": 2,
5+
"useTabs": false,
6+
"semi": false,
7+
"singleQuote": true,
8+
"jsxSingleQuote": false,
9+
"trailingComma": "all",
10+
"arrowParens": "always",
11+
"bracketSpacing": true,
12+
"bracketSameLine": false,
13+
"endOfLine": "lf",
14+
"quoteProps": "as-needed",
15+
"sortPackageJson": false,
16+
"sortImports": {
17+
"order": "asc",
18+
"ignoreCase": true,
19+
"newlinesBetween": false,
20+
"sortSideEffects": false,
21+
"groups": [
22+
["side_effect", "side_effect_style"],
23+
"builtin",
24+
"external",
25+
["internal", "parent", "sibling", "index"],
26+
"unknown"
27+
]
28+
},
29+
"ignorePatterns": [
30+
"*.tsbuildinfo",
31+
"**/.analysis/**",
32+
"__generated__/**",
33+
"__mocks__/**",
34+
".bun/**",
35+
".tamagui/**",
36+
"@types/**",
37+
"types/**",
38+
"**/lcov-report/**",
39+
"**/coverage/**",
40+
"apps/extension/.maestro/**",
41+
"apps/extension/dev/**",
42+
"apps/mobile/.maestro/**",
43+
"apps/mobile/ios/**",
44+
"apps/mobile/android/**",
45+
"apps/web/playwright/**",
46+
"apps/web/cypress/**",
47+
"apps/web/public/**",
48+
"apps/web/vite/**",
49+
"apps/web/scripts/**",
50+
"apps/web/twist-configs/**",
51+
"apps/web/test-results/**",
52+
"apps/dev-portal/content/",
53+
"**/node_modules/**",
54+
"**/dist/**",
55+
"**/build/**",
56+
"**/bin/**",
57+
"**/.wxt/**",
58+
"**/.next/**",
59+
"**/.react-router/**",
60+
"**/.source/**",
61+
"**/.storybook/storybook.requires.ts",
62+
"packages/api/src/clients/trading/api.json",
63+
"tools/**/files/**",
64+
"**/*.md",
65+
"**/*.mdx",
66+
"**/*.css",
67+
"**/*.scss",
68+
"**/*.less",
69+
"**/*.html",
70+
"**/*.yaml",
71+
"**/*.yml",
72+
"**/*.graphql",
73+
"**/*.toml",
74+
]
75+
}

0 commit comments

Comments
 (0)