-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switch back to vitest * update endpoints
- Loading branch information
1 parent
397012a
commit 908eaae
Showing
39 changed files
with
11,891 additions
and
1,645 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
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
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,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
bun lint-staged | ||
yarn lint-staged |
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,2 +1,3 @@ | ||
.yarn | ||
*.yml | ||
*.md |
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.2.cjs |
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
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
"lint": "tsc --noEmit && eslint . --ext .js,.ts && prettier --check .", | ||
"fix": "eslint . --ext .js,.ts --fix && prettier -w .", | ||
"prepare": "husky install", | ||
"test": "LOG_LEVEL=error bun test", | ||
"test": "LOG_LEVEL=error vitest", | ||
"test:ui": "LOG_LEVEL=error vitest --ui", | ||
"update-env": "tsx scripts/update-env.ts" | ||
}, | ||
"resolutions": { | ||
|
@@ -18,19 +19,23 @@ | |
"@acala-network/sdk-core": "^4.1.9-10", | ||
"@polkadot/api": "^10.11.2", | ||
"@polkawallet/bridge": "^0.1.5-19", | ||
"@swc/core": "^1.3.106", | ||
"axios": "^1.6.6", | ||
"dotenv": "^16.3.1", | ||
"lodash": "^4.17.21", | ||
"typescript": "^5.3.2" | ||
"typescript": "^5.3.3", | ||
"unplugin-swc": "^1.4.4", | ||
"vitest": "^1.2.1" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash": "^4", | ||
"@types/node": "^20.9.4", | ||
"@typescript-eslint/eslint-plugin": "^6.12.0", | ||
"@typescript-eslint/parser": "^6.12.0", | ||
"bun-types": "latest", | ||
"@vitest/ui": "^1.2.1", | ||
"eslint": "^8.54.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-import-resolver-typescript-bun": "^0.0.58", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-import": "^2.29.0", | ||
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0", | ||
"husky": "^8.0.3", | ||
|
@@ -46,5 +51,6 @@ | |
"lint-staged": { | ||
"*.ts": "eslint --cache --fix", | ||
"*.{ts,css}": "prettier --write" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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.