@nomicfoundation/hardhat-ethers-chai-matchers 3.0.0-next.0 → 3.0.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/package.json +11 -11
package/CHANGELOG.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# @nomicfoundation/hardhat-ethers-chai-matchers
|
2
|
+
|
3
|
+
## 3.0.0-next.2
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Hardhat 3 Alpha release (2025-03-20T08:38:27.809Z)
|
8
|
+
|
9
|
+
## 3.0.0-next.1
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- 5fbea0d: A small bug fix release for the Hardhat 3 Alpha.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nomicfoundation/hardhat-ethers-chai-matchers",
|
3
|
-
"version": "3.0.0-next.
|
3
|
+
"version": "3.0.0-next.2",
|
4
4
|
"description": "Hardhat utils for testing",
|
5
5
|
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-ethers-chai-matchers",
|
6
6
|
"repository": {
|
@@ -32,12 +32,12 @@
|
|
32
32
|
],
|
33
33
|
"devDependencies": {
|
34
34
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
|
35
|
-
"@nomicfoundation/hardhat-mocha": "^3.0.0-next.
|
36
|
-
"@nomicfoundation/hardhat-node-test-reporter": "^3.0.0-next.
|
35
|
+
"@nomicfoundation/hardhat-mocha": "^3.0.0-next.2",
|
36
|
+
"@nomicfoundation/hardhat-node-test-reporter": "^3.0.0-next.2",
|
37
37
|
"@types/chai": "^4.2.0",
|
38
38
|
"@types/debug": "^4.1.7",
|
39
39
|
"@types/deep-eql": "^4.0.2",
|
40
|
-
"@types/mocha": ">=
|
40
|
+
"@types/mocha": ">=10.0.10",
|
41
41
|
"@types/node": "^20.14.9",
|
42
42
|
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
43
43
|
"@typescript-eslint/parser": "^7.7.1",
|
@@ -48,24 +48,24 @@
|
|
48
48
|
"eslint-plugin-import": "2.29.1",
|
49
49
|
"eslint-plugin-no-only-tests": "3.1.0",
|
50
50
|
"expect-type": "^0.19.0",
|
51
|
-
"mocha": "^
|
51
|
+
"mocha": "^11.0.0",
|
52
52
|
"prettier": "3.2.5",
|
53
53
|
"rimraf": "^5.0.5",
|
54
54
|
"tsx": "^4.19.3",
|
55
55
|
"typescript": "~5.5.0",
|
56
56
|
"typescript-eslint": "7.7.1",
|
57
|
-
"@nomicfoundation/hardhat-test-utils": "^3.0.0-next.
|
57
|
+
"@nomicfoundation/hardhat-test-utils": "^3.0.0-next.2"
|
58
58
|
},
|
59
59
|
"dependencies": {
|
60
|
-
"@nomicfoundation/hardhat-errors": "^3.0.0-next.
|
61
|
-
"@nomicfoundation/hardhat-utils": "^3.0.0-next.
|
60
|
+
"@nomicfoundation/hardhat-errors": "^3.0.0-next.2",
|
61
|
+
"@nomicfoundation/hardhat-utils": "^3.0.0-next.2",
|
62
62
|
"@types/chai-as-promised": "^8.0.1",
|
63
63
|
"chai-as-promised": "^8.0.0",
|
64
64
|
"deep-eql": "^5.0.1"
|
65
65
|
},
|
66
66
|
"peerDependencies": {
|
67
|
-
"hardhat": "^3.0.0-next.
|
68
|
-
"@nomicfoundation/hardhat-ethers": "^4.0.0-next.
|
67
|
+
"hardhat": "^3.0.0-next.2",
|
68
|
+
"@nomicfoundation/hardhat-ethers": "^4.0.0-next.2",
|
69
69
|
"chai": "^5.1.2",
|
70
70
|
"ethers": "^6.13.4"
|
71
71
|
},
|
@@ -77,7 +77,7 @@
|
|
77
77
|
"test": "node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"",
|
78
78
|
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"",
|
79
79
|
"test:coverage": "c8 --reporter html --reporter text --all --exclude test --exclude src/internal/types.ts --exclude src/internal/ui/direct-user-interruption-manager.ts --src src node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/!(fixture-projects|helpers)/**/*.ts\"",
|
80
|
-
"pretest": "pnpm build
|
80
|
+
"pretest": "pnpm build",
|
81
81
|
"pretest:only": "pnpm build",
|
82
82
|
"build": "tsc --build .",
|
83
83
|
"clean": "rimraf dist"
|