@lodestar/flare 1.23.0-dev.c04157c969 → 1.23.0-dev.cbc7c9018d
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/index.js +0 -2
- package/lib/index.js.map +1 -1
- package/package.json +10 -10
package/lib/index.js
CHANGED
|
@@ -9,12 +9,10 @@ void flare
|
|
|
9
9
|
// Show command help message when no command is provided
|
|
10
10
|
if (msg.includes("Not enough non-option arguments")) {
|
|
11
11
|
yarg.showHelp();
|
|
12
|
-
// eslint-disable-next-line no-console
|
|
13
12
|
console.log("\n");
|
|
14
13
|
}
|
|
15
14
|
}
|
|
16
15
|
const errorMessage = err !== undefined ? (err instanceof YargsError ? err.message : err.stack) : msg || "Unknown error";
|
|
17
|
-
// eslint-disable-next-line no-console
|
|
18
16
|
console.error(` ✖ ${errorMessage}\n`);
|
|
19
17
|
process.exit(1);
|
|
20
18
|
})
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAC,UAAU,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAC,MAAM,EAAE,IAAI,EAAC,MAAM,UAAU,CAAC;AACtC,OAAO,gCAAgC,CAAC;AAExC,MAAM,KAAK,GAAG,MAAM,EAAE,CAAC;AAEvB,KAAK,KAAK;KACP,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;IACjB,IAAI,GAAG,EAAE,CAAC;QACR,wDAAwD;QACxD,IAAI,GAAG,CAAC,QAAQ,CAAC,iCAAiC,CAAC,EAAE,CAAC;YACpD,IAAI,CAAC,QAAQ,EAAE,CAAC;YAChB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAC,UAAU,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAC,MAAM,EAAE,IAAI,EAAC,MAAM,UAAU,CAAC;AACtC,OAAO,gCAAgC,CAAC;AAExC,MAAM,KAAK,GAAG,MAAM,EAAE,CAAC;AAEvB,KAAK,KAAK;KACP,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;IACjB,IAAI,GAAG,EAAE,CAAC;QACR,wDAAwD;QACxD,IAAI,GAAG,CAAC,QAAQ,CAAC,iCAAiC,CAAC,EAAE,CAAC;YACpD,IAAI,CAAC,QAAQ,EAAE,CAAC;YAChB,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;QACpB,CAAC;IACH,CAAC;IAED,MAAM,YAAY,GAChB,GAAG,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,YAAY,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,eAAe,CAAC;IAErG,OAAO,CAAC,KAAK,CAAC,MAAM,YAAY,IAAI,CAAC,CAAC;IACtC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC;IAEF,cAAc;KACb,KAAK,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lodestar/flare",
|
|
3
|
-
"version": "1.23.0-dev.
|
|
3
|
+
"version": "1.23.0-dev.cbc7c9018d",
|
|
4
4
|
"description": "Beacon chain debugging tool",
|
|
5
5
|
"author": "ChainSafe Systems",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"build:watch": "yarn run build --watch",
|
|
42
42
|
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\" flare --help",
|
|
43
43
|
"check-types": "tsc",
|
|
44
|
-
"lint": "
|
|
45
|
-
"lint:fix": "yarn run lint --
|
|
44
|
+
"lint": "biome check src/",
|
|
45
|
+
"lint:fix": "yarn run lint --write",
|
|
46
46
|
"test": "yarn test:unit",
|
|
47
47
|
"test:unit": "vitest --run --dir test/unit/",
|
|
48
48
|
"check-readme": "typescript-docs-verifier"
|
|
@@ -60,17 +60,17 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@chainsafe/bls-keygen": "^0.4.0",
|
|
62
62
|
"@chainsafe/blst": "^2.0.3",
|
|
63
|
-
"@lodestar/api": "1.23.0-dev.
|
|
64
|
-
"@lodestar/config": "1.23.0-dev.
|
|
65
|
-
"@lodestar/params": "1.23.0-dev.
|
|
66
|
-
"@lodestar/state-transition": "1.23.0-dev.
|
|
67
|
-
"@lodestar/types": "1.23.0-dev.
|
|
68
|
-
"@lodestar/utils": "1.23.0-dev.
|
|
63
|
+
"@lodestar/api": "1.23.0-dev.cbc7c9018d",
|
|
64
|
+
"@lodestar/config": "1.23.0-dev.cbc7c9018d",
|
|
65
|
+
"@lodestar/params": "1.23.0-dev.cbc7c9018d",
|
|
66
|
+
"@lodestar/state-transition": "1.23.0-dev.cbc7c9018d",
|
|
67
|
+
"@lodestar/types": "1.23.0-dev.cbc7c9018d",
|
|
68
|
+
"@lodestar/utils": "1.23.0-dev.cbc7c9018d",
|
|
69
69
|
"source-map-support": "^0.5.21",
|
|
70
70
|
"yargs": "^17.7.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@types/yargs": "^17.0.24"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "9a4b1f0787ed227483c6e9c363ecd36c92876d08"
|
|
76
76
|
}
|