@twin.org/crypto-cli 0.0.1-next.59 → 0.0.1-next.60
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/dist/cjs/index.cjs +2 -2
- package/dist/esm/index.mjs +2 -2
- package/docs/changelog.md +17 -0
- package/package.json +4 -4
package/dist/cjs/index.cjs
CHANGED
|
@@ -103,7 +103,7 @@ async function actionCommandAddress(opts) {
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
if (core.Is.stringValue(opts?.json)) {
|
|
106
|
-
await cliCore.CLIUtils.writeJsonFile(opts.json, addressDictionary, opts.mergeJson);
|
|
106
|
+
await cliCore.CLIUtils.writeJsonFile(opts.json, { addresses: addressDictionary }, opts.mergeJson);
|
|
107
107
|
}
|
|
108
108
|
if (core.Is.stringValue(opts?.env)) {
|
|
109
109
|
const output = [];
|
|
@@ -193,7 +193,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
193
193
|
return this.execute({
|
|
194
194
|
title: "TWIN Crypto",
|
|
195
195
|
appName: "twin-crypto",
|
|
196
|
-
version: "0.0.1-next.
|
|
196
|
+
version: "0.0.1-next.60", // x-release-please-version
|
|
197
197
|
icon: "🌍",
|
|
198
198
|
supportsEnvFiles: true,
|
|
199
199
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -100,7 +100,7 @@ async function actionCommandAddress(opts) {
|
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
if (Is.stringValue(opts?.json)) {
|
|
103
|
-
await CLIUtils.writeJsonFile(opts.json, addressDictionary, opts.mergeJson);
|
|
103
|
+
await CLIUtils.writeJsonFile(opts.json, { addresses: addressDictionary }, opts.mergeJson);
|
|
104
104
|
}
|
|
105
105
|
if (Is.stringValue(opts?.env)) {
|
|
106
106
|
const output = [];
|
|
@@ -190,7 +190,7 @@ class CLI extends CLIBase {
|
|
|
190
190
|
return this.execute({
|
|
191
191
|
title: "TWIN Crypto",
|
|
192
192
|
appName: "twin-crypto",
|
|
193
|
-
version: "0.0.1-next.
|
|
193
|
+
version: "0.0.1-next.60", // x-release-please-version
|
|
194
194
|
icon: "🌍",
|
|
195
195
|
supportsEnvFiles: true,
|
|
196
196
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.59...crypto-cli-v0.0.1-next.60) (2025-06-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
9
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* The following workspace dependencies were updated
|
|
15
|
+
* dependencies
|
|
16
|
+
* @twin.org/cli-core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
17
|
+
* @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
18
|
+
* @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
19
|
+
|
|
3
20
|
## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.58...crypto-cli-v0.0.1-next.59) (2025-06-17)
|
|
4
21
|
|
|
5
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.60",
|
|
4
4
|
"description": "A command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "0.0.1-next.
|
|
18
|
-
"@twin.org/core": "0.0.1-next.
|
|
19
|
-
"@twin.org/crypto": "0.0.1-next.
|
|
17
|
+
"@twin.org/cli-core": "0.0.1-next.60",
|
|
18
|
+
"@twin.org/core": "0.0.1-next.60",
|
|
19
|
+
"@twin.org/crypto": "0.0.1-next.60",
|
|
20
20
|
"@twin.org/nameof": "next",
|
|
21
21
|
"commander": "14.0.0"
|
|
22
22
|
},
|