Skip to content

Commit b85d3f1

Browse files
ci(release): publish latest release
1 parent e90f094 commit b85d3f1

File tree

1,348 files changed

+61887
-40798
lines changed

Some content is hidden

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

1,348 files changed

+61887
-40798
lines changed

.bun-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.cursor/environment.json

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

.depcheckrc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,19 @@ ignores: [
88
'wrangler',
99
'react-router',
1010
# Dependencies that depcheck thinks are missing but are actually present or never used
11+
'@yarnpkg/core',
12+
'@yarnpkg/cli',
1113
'clipanion',
14+
'@yarnpkg/fslib',
1215
'bufferutil',
1316
'utf-8-validate',
17+
'@yarnpkg/parsers',
18+
'@yarnpkg/plugin-git',
1419
'semver',
1520
'typanion',
16-
'@biomejs/biome',
21+
'turbo-ignore',
22+
'prettier',
23+
'prettier-plugin-organize-imports',
1724
# needed for ci
1825
'dd-trace',
1926
]

.env.defaults

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Use this file for default/shared values
22
# These will be overriden in web by .env and overriden in mobile by .env.defaults.local
33
# And keep env vars in sync with env.d.ts
4-
# In order to run the app locally you need to run `bun mobile env:local:download` or `bun extension env:local:download`
4+
# In order to run the app locally you need to run `yarn mobile env:local:download` or `yarn extension env:local:download`
55
ALCHEMY_API_KEY=stored-in-.env.local
66
APPSFLYER_API_KEY=stored-in-.env.local
77
APPSFLYER_APP_ID=stored-in-.env.local

.gitignore

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ yarn-error.log*
3333
# turbo
3434
.turbo
3535

36-
# nx
37-
.nx/
38-
3936
# .yarn files
4037
.yarn/cache
4138
.yarn/versions
@@ -71,13 +68,3 @@ CLAUDE.local.md
7168
# cursor
7269
.cursor/mcp.json
7370
.cursor/rules/local-workflow.mdc
74-
75-
# lefthook
76-
.lefthook/
77-
78-
79-
80-
.nx/cache
81-
.nx/workspace-data
82-
.cursor/rules/nx-rules.mdc
83-
.github/instructions/nx.instructions.md

.husky/pre-commit

Lines changed: 15 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,19 @@
1-
#!/bin/sh
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
23

3-
if [ "$LEFTHOOK_VERBOSE" = "1" -o "$LEFTHOOK_VERBOSE" = "true" ]; then
4-
set -x
5-
fi
4+
yarn g:run-fast-checks
65

7-
if [ "$LEFTHOOK" = "0" ]; then
8-
exit 0
6+
if command -v git-secrets &> /dev/null
7+
then # only run if git-secrets is installed
8+
# Initialise git-secrets configuration
9+
git-secrets --register-aws > /dev/null
10+
11+
echo "Running git-secrets..."
12+
# Scans all files that are about to be committed.
13+
git-secrets --pre_commit_hook -- "$@"
914
fi
1015

11-
call_lefthook()
12-
{
13-
if test -n "$LEFTHOOK_BIN"
14-
then
15-
"$LEFTHOOK_BIN" "$@"
16-
elif lefthook -h >/dev/null 2>&1
17-
then
18-
lefthook "$@"
19-
else
20-
dir="$(git rev-parse --show-toplevel)"
21-
osArch=$(uname | tr '[:upper:]' '[:lower:]')
22-
cpuArch=$(uname -m | sed 's/aarch64/arm64/;s/x86_64/x64/')
23-
if test -f "$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook"
24-
then
25-
"$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook" "$@"
26-
elif test -f "$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook"
27-
then
28-
"$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook" "$@"
29-
elif test -f "$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook"
30-
then
31-
"$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook" "$@"
32-
elif test -f "$dir/node_modules/lefthook/bin/index.js"
33-
then
34-
"$dir/node_modules/lefthook/bin/index.js" "$@"
35-
36-
elif go tool lefthook -h >/dev/null 2>&1
37-
then
38-
go tool lefthook "$@"
39-
elif bundle exec lefthook -h >/dev/null 2>&1
40-
then
41-
bundle exec lefthook "$@"
42-
elif yarn lefthook -h >/dev/null 2>&1
43-
then
44-
yarn lefthook "$@"
45-
elif pnpm lefthook -h >/dev/null 2>&1
46-
then
47-
pnpm lefthook "$@"
48-
elif swift package lefthook >/dev/null 2>&1
49-
then
50-
swift package --build-path .build/lefthook --disable-sandbox lefthook "$@"
51-
elif command -v mint >/dev/null 2>&1
52-
then
53-
mint run csjones/lefthook-plugin "$@"
54-
elif uv run lefthook -h >/dev/null 2>&1
55-
then
56-
uv run lefthook "$@"
57-
elif mise exec -- lefthook -h >/dev/null 2>&1
58-
then
59-
mise exec -- lefthook "$@"
60-
elif devbox run lefthook -h >/dev/null 2>&1
61-
then
62-
devbox run lefthook "$@"
63-
else
64-
echo "Can't find lefthook in PATH"
65-
fi
66-
fi
67-
}
68-
69-
call_lefthook run "pre-commit" "$@"
16+
if command -v trufflehog &> /dev/null
17+
then # only run if trufflehog is installed
18+
trufflehog git file://. --since-commit HEAD --only-verified --fail
19+
fi

.husky/prepare-commit-msg

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

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# used in tandem with package.json engines section to only use bun
1+
# used in tandem with package.json engines section to only use yarn
22
engine-strict=true

.nxignore

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

.prettierignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
*.tsbuildinfo
2+
__generated__
3+
__mocks__
4+
.detoxrc.js
5+
.tamagui
6+
.turbo
7+
.turbo
8+
.yarn
9+
@types
10+
*.graphql
11+
*.html
12+
*.inc
13+
*.json
14+
*.jsonc
15+
*.md
16+
*.yml
17+
build
18+
craco.config.cjs
19+
dist
20+
jest-setup.js
21+
jest.config.js
22+
jest.config.js
23+
metro.config.js
24+
node_modules
25+
types
26+
**/coverage/**
27+
28+
# app/package specific
29+
30+
# mobile
31+
32+
apps/mobile/ios
33+
apps/mobile/android
34+
apps/mobile/.storybook/storybook.requires.ts
35+
36+
# extension
37+
38+
apps/extension/dev
39+
40+
# packages
41+
42+
packages/uniswap/codegen.ts
43+
44+
# eslint
45+
46+
packages/eslint-config/restrictedImports.js
47+
48+
# generated
49+
50+
packages/uniswap/src/data/rest/conversionTracking/api
51+
**/storybook-static/
52+
**/lcov-report/

0 commit comments

Comments
 (0)