@lodestar/spec-test-util 1.45.0-dev.fadf0fbb1f → 1.46.0-dev.8fc4e297d2
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/lib/downloadTestsCli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lodestar/spec-test-util",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.46.0-dev.8fc4e297d2",
|
|
4
4
|
"description": "Spec test suite generator from yaml test files",
|
|
5
5
|
"author": "ChainSafe Systems",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"test": "pnpm test:unit && pnpm test:e2e",
|
|
47
47
|
"test:unit": "vitest run --project unit --project unit-minimal",
|
|
48
48
|
"test:e2e": "vitest run --project e2e --project e2e-mainnet",
|
|
49
|
-
"check-readme": "pnpm exec
|
|
49
|
+
"check-readme": "pnpm exec tsx ../../scripts/check_readme.ts"
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
"blockchain"
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@lodestar/utils": "^1.
|
|
62
|
+
"@lodestar/utils": "^1.46.0-dev.8fc4e297d2",
|
|
63
63
|
"rimraf": "^4.4.1",
|
|
64
64
|
"snappyjs": "^0.7.0",
|
|
65
65
|
"vitest": "catalog:"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@chainsafe/ssz": "^1.
|
|
69
|
-
"@lodestar/types": "^1.
|
|
68
|
+
"@chainsafe/ssz": "^1.6.2",
|
|
69
|
+
"@lodestar/types": "^1.46.0-dev.8fc4e297d2",
|
|
70
70
|
"vitest": "catalog:"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "c2a9e6cb14fc9deaf272eca7289ef323ebbe2e47"
|
|
73
73
|
}
|
package/src/downloadTestsCli.ts
CHANGED