Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 8c2d7c3

Browse files
committed
⬆️ Update dependenceies
1 parent 1300e3f commit 8c2d7c3

File tree

20 files changed

+317
-848
lines changed

20 files changed

+317
-848
lines changed

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"private": true,
33
"scripts": {
44
"bootstrap": "npx lerna bootstrap",
5+
"build": "npx lerna run build --stream",
56
"prepare": "lerna run prepare --stream --concurrency=1 && husky install",
67
"publish-release": "./scripts/publish-release.sh",
78
"publish-dist-tag": "./scripts/publish-dist-tag.sh",
@@ -18,6 +19,7 @@
1819
"@typescript-eslint/eslint-plugin": "^5.6.0",
1920
"@typescript-eslint/parser": "^5.6.0",
2021
"coveralls": "^3.1.1",
22+
"dependency-check": "^4.1.0",
2123
"eslint": "^8.4.1",
2224
"eslint-plugin-react-hooks": "^4.2.0",
2325
"husky": "^7.0.4",
@@ -27,8 +29,7 @@
2729
"lint-staged": "^12.1.2",
2830
"nyc": "15.1.0",
2931
"prettier": "^2.5.1",
30-
"prs-merged-since": "^1.1.0",
31-
"dependency-check": "^4.1.0"
32+
"prs-merged-since": "^1.1.0"
3233
},
3334
"workspaces": {
3435
"packages": [
@@ -38,5 +39,8 @@
3839
"lint-staged": {
3940
"*.{js,ts,jsx,tsx}": "eslint --fix",
4041
"*.{js,ts,jsx,tsx,css,md}": "prettier --write"
42+
},
43+
"resolutions": {
44+
"web3-core": "^4.0.0-alpha.0"
4145
}
4246
}

packages/artifactor/tsconfig.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@
1212
"lib": [
1313
"es2019"
1414
],
15-
"paths": {
16-
"web3": [
17-
"../../node_modules/@types/web3/index",
18-
"node_modules/web3/index"
19-
]
20-
},
2115
"rootDir": ".",
2216
"typeRoots": [
2317
"./typings",

packages/blockchain-utils/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@
2020
"test": "mocha --exit -r ts-node/register test/**/*.test.ts"
2121
},
2222
"types": "./typings/index.d.ts",
23+
"dependencies": {
24+
"web3-types": "^0.1.0-alpha.0"
25+
},
2326
"devDependencies": {
2427
"@types/assert": "^1.4.2",
2528
"@types/mocha": "^5.2.7",
2629
"@types/node": "12.12.21",
27-
"@types/web3": "^1.0.20",
2830
"mocha": "9.2.2",
2931
"ts-node": "10.7.0",
3032
"typescript": "^4.1.4"

packages/blockchain-utils/tsconfig.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
"outDir": "dist",
1111
"baseUrl": ".",
1212
"lib": ["es2019"],
13-
"paths": {
14-
"web3": [
15-
"../../node_modules/@types/web3/index",
16-
"node_modules/web3/index"
17-
]
18-
},
1913
"rootDir": ".",
2014
"typeRoots": [
2115
"./typings",

packages/box/tsconfig.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111
"outDir": "dist",
1212
"baseUrl": ".",
1313
"lib": ["es2019"],
14-
"paths": {
15-
"web3": [
16-
"../../node_modules/@types/web3/index",
17-
"node_modules/web3/index"
18-
]
19-
},
2014
"rootDir": "."
2115
},
2216
"include": [

packages/code-utils/tsconfig.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@
99
"sourceMap": true,
1010
"outDir": "dist",
1111
"baseUrl": ".",
12-
"lib": ["es2019"],
13-
"paths": {
14-
"web3": [
15-
"../../node_modules/@types/web3/index",
16-
"node_modules/web3/index"
17-
]
18-
},
12+
"lib": [
13+
"es2019"
14+
],
15+
"types": [
16+
"node"
17+
],
1918
"rootDir": ".",
2019
"typeRoots": [
2120
"./typings",
@@ -28,4 +27,4 @@
2827
"./src/**/*.ts",
2928
"./typings/**/*.d.ts"
3029
]
31-
}
30+
}

packages/codec/docs/tsconfig.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@
1818
"@truffle/codec/*": [
1919
"../codec/lib/*"
2020
],
21-
"web3": [
22-
"../../node_modules/@types/web3/index",
23-
"node_modules/web3/index"
24-
],
25-
"web3/types": [
26-
"../../node_modules/@types/web3/types",
27-
"node_modules/web3/types"
28-
],
2921
"web3/eth/types": [
3022
"../../node_modules/@types/web3/eth/types",
3123
"node_modules/web3/eth/types"

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"ethereum-cryptography": "1.0.3",
6161
"ethereumjs-wallet": "^1.0.1",
6262
"ethpm": "0.0.19",
63-
"ethpm-registry": "0.1.0-next.3",
63+
"ethpm-registry": "0.1.0-next.11",
6464
"fs-extra": "^9.1.0",
6565
"ganache": "7.2.0",
6666
"get-port": "^5.1.1",
@@ -79,7 +79,7 @@
7979
"tmp": "^0.2.1",
8080
"universal-analytics": "^0.4.17",
8181
"web3": "^4.0.0-alpha.1",
82-
"web3-utils": "^4.0.0-alpha.1",
82+
"web3-utils": "4.0.0-alpha.1",
8383
"xregexp": "^4.2.4",
8484
"yargs": "^13.3.0"
8585
},

packages/dashboard-message-bus-e2e-test/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"@types/debug": "^4.1.5",
3232
"@types/jest": "^27.0.3",
3333
"@types/node": "^16.11.6",
34-
"@types/web3": "^1.2.2",
3534
"ethers": "^5.6.2",
3635
"jest": "^27.4.5",
3736
"ts-jest": "^27.1.2"

packages/dashboard-message-bus/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"devDependencies": {
2929
"@types/node": "^12.0.0",
3030
"@types/promise.any": "^2.0.0",
31-
"@types/web3": "^1.2.2",
3231
"typescript": "^4.1.4"
3332
},
3433
"publishConfig": {

0 commit comments

Comments
 (0)