Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Dec 29, 2023
1 parent 7c1ac11 commit 1b3f498
Show file tree
Hide file tree
Showing 9 changed files with 616 additions and 92 deletions.
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ for (const def of Object.values(networkDefs)) {
blockNumber: toNumber(process.env[`${upperName}_BLOCK_NUMBER`]),
endpoint: process.env[`${upperName}_ENDPOINT`] ?? endpoint,
db: process.env.DB_PATH,
port: 0,
...setupConfig.options,
...options,
}
Expand Down
96 changes: 48 additions & 48 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
{
"name": "e2e-tests",
"private": true,
"scripts": {
"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",
"update-env": "tsx scripts/update-env.ts"
},
"resolutions": {
"@polkadot/api": "^10.11.1"
},
"dependencies": {
"@acala-network/chopsticks": "^0.9.5-3",
"@acala-network/chopsticks-testing": "^0.9.5-3",
"@acala-network/sdk": "^4.1.9-10",
"@acala-network/sdk-core": "^4.1.9-10",
"@polkadot/api": "^10.11.1",
"@polkawallet/bridge": "^0.1.5-19",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"typescript": "^5.3.2"
},
"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",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript-bun": "^0.0.58",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsx": "^4.6.2"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css}": "prettier --write"
}
"name": "e2e-tests",
"private": true,
"scripts": {
"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",
"update-env": "tsx scripts/update-env.ts"
},
"resolutions": {
"@polkadot/api": "^10.11.1"
},
"dependencies": {
"@acala-network/chopsticks": "^0.9.5-3",
"@acala-network/chopsticks-testing": "^0.9.5-3",
"@acala-network/sdk": "^4.1.9-10",
"@acala-network/sdk-core": "^4.1.9-10",
"@polkadot/api": "^10.11.1",
"@polkawallet/bridge": "^0.1.5-19",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"typescript": "^5.3.2"
},
"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",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript-bun": "^0.0.58",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsx": "^4.6.2"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css}": "prettier --write"
}
}
Loading

0 comments on commit 1b3f498

Please sign in to comment.