-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Frontend): Transfers FE improvements (#187)
- Loading branch information
1 parent
ed879d4
commit e7cd6b1
Showing
55 changed files
with
8,648 additions
and
4,321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Frontend | ||
on: | ||
pull_request: | ||
paths: | ||
- .github/workflows/frontend.yml | ||
- apps/transfers/frontend/** | ||
defaults: | ||
run: | ||
working-directory: apps/transfers/frontend | ||
jobs: | ||
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20.x" | ||
check-latest: true | ||
- run: npm ci | ||
- run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"plugins": ["react-compiler"], | ||
"rules": { | ||
"react-compiler/react-compiler": "error" | ||
} | ||
"extends": [ | ||
"next", | ||
"plugin:tailwindcss/recommended", | ||
"plugin:prettier/recommended" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
{ | ||
"plugins": ["prettier-plugin-tailwindcss"], | ||
"quoteProps": "consistent", | ||
"singleQuote": true, | ||
"semi": false, | ||
"singleAttributePerLine": true, | ||
"tailwindFunctions": ["tw", "twJoin", "twMerge"], | ||
"tailwindPreserveWhitespace": true, | ||
"tailwindFunctions": ["twJoin", "twMerge"], | ||
"tabWidth": 2, | ||
"trailingComma": "all" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace NodeJS { | ||
interface ProcessEnv { | ||
NEXT_PUBLIC_ENCLAVE_PUBLIC_KEY: string | ||
NEXT_PUBLIC_TARGET_CHAIN: string | ||
NEXT_PUBLIC_TRANSFERS_CONTRACT_ADDRESS: string | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.