Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6814707752 | ||
|
|
e1da44bae7 | ||
|
|
51fd81a082 | ||
|
|
3cdd930b82 | ||
|
|
80d1b01713 | ||
|
|
f3c0ae8c34 | ||
|
|
f5625d0c87 |
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/laconic-registry-cli",
|
"name": "@cerc-io/laconic-registry-cli",
|
||||||
"version": "0.1.3",
|
"version": "0.1.7",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "git@github.com:cerc-io/laconic-registry-cli.git",
|
"repository": "git@github.com:cerc-io/laconic-registry-cli.git",
|
||||||
"author": "",
|
"author": "",
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fs-extra": "^10.1.0",
|
"fs-extra": "^10.1.0",
|
||||||
"@cerc-io/laconic-sdk": "0.1.9",
|
"@cerc-io/laconic-sdk": "^0.1.13",
|
||||||
"js-yaml": "^3.14.1",
|
"js-yaml": "^3.14.1",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"lodash-clean": "^2.2.3",
|
"lodash-clean": "^2.2.3",
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ export const handler = async (argv: Arguments) => {
|
|||||||
|
|
||||||
let file = null;
|
let file = null;
|
||||||
if (filename) {
|
if (filename) {
|
||||||
file = path.join(process.cwd(), filename as string);
|
file = filename as string;
|
||||||
} else {
|
} else {
|
||||||
file = 0; // stdin
|
file = 0; // stdin
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-1
@@ -11,6 +11,12 @@ export const queryOutput = (result: any, output: unknown) => {
|
|||||||
if (output=="json"){
|
if (output=="json"){
|
||||||
console.log(JSON.parse(JSON.stringify(result)));
|
console.log(JSON.parse(JSON.stringify(result)));
|
||||||
} else {
|
} else {
|
||||||
console.log(JSON.stringify(result,undefined,2));
|
console.log(JSON.stringify(result, (key, value) => {
|
||||||
|
try {
|
||||||
|
return JSON.parse(value)
|
||||||
|
} catch (e) {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}, 2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
"@cerc-io/laconic-sdk@0.1.9":
|
"@cerc-io/laconic-sdk@^0.1.13":
|
||||||
version "0.1.9"
|
version "0.1.13"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Flaconic-sdk/-/0.1.9/laconic-sdk-0.1.9.tgz#cf11d20a22c75fd61126640824d27d687f925151"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Flaconic-sdk/-/0.1.13/laconic-sdk-0.1.13.tgz#a51c601f50f3c96656556b7c3f28bc544aac8aef"
|
||||||
integrity sha512-LlOBZ39cYalvu9YZBpf5KUkgJJDlsuUhAaBReedwVV5O7zwy+3zRaM4HkX+3saG3a4qR8VfYWEeS5GqF9b6Ixw==
|
integrity sha512-P5dCEZjpQTGupSDz1mBfGl3SK/95KKHP0Yww6zlz9xva8l66P9t6juYcF//Os2vA4PzDujCTETPr15kJHSFcTQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@cosmjs/amino" "^0.28.1"
|
"@cosmjs/amino" "^0.28.1"
|
||||||
"@cosmjs/crypto" "^0.28.1"
|
"@cosmjs/crypto" "^0.28.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user