@twin.org/crypto-cli 0.0.4-next.8 → 0.9.0
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/es/cli.js +1 -1
- package/dist/es/cli.js.map +1 -1
- package/dist/locales/en.json +8 -1
- package/docs/changelog.md +225 -0
- package/package.json +6 -6
package/dist/es/cli.js
CHANGED
|
@@ -21,7 +21,7 @@ export class CLI extends CLIBase {
|
|
|
21
21
|
return this.execute({
|
|
22
22
|
title: "TWIN Crypto",
|
|
23
23
|
appName: "twin-crypto",
|
|
24
|
-
version: "0.0
|
|
24
|
+
version: "0.9.0", // x-release-please-version
|
|
25
25
|
icon: "🔒",
|
|
26
26
|
supportsEnvFiles: true,
|
|
27
27
|
overrideOutputWidth: options?.overrideOutputWidth,
|
package/dist/es/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,OAAO;IAC/B;;;;;;;OAOG;IACI,KAAK,CAAC,GAAG,CACf,IAAc,EACd,gBAAyB,EACzB,OAA0C;QAE1C,OAAO,IAAI,CAAC,OAAO,CAClB;YACC,KAAK,EAAE,aAAa;YACpB,OAAO,EAAE,aAAa;YACtB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,OAAO;IAC/B;;;;;;;OAOG;IACI,KAAK,CAAC,GAAG,CACf,IAAc,EACd,gBAAyB,EACzB,OAA0C;QAE1C,OAAO,IAAI,CAAC,OAAO,CAClB;YACC,KAAK,EAAE,aAAa;YACpB,OAAO,EAAE,aAAa;YACtB,OAAO,EAAE,OAAO,EAAE,2BAA2B;YAC7C,IAAI,EAAE,IAAI;YACV,gBAAgB,EAAE,IAAI;YACtB,mBAAmB,EAAE,OAAO,EAAE,mBAAmB;YACjD,kBAAkB,EAAE,IAAI;SACxB,EACD,gBAAgB,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,CAAC,EACzF,IAAI,CACJ,CAAC;IACH,CAAC;IAED;;;;;OAKG;IACO,WAAW,CAAC,OAAgB;QACrC,OAAO,CAAC,oBAAoB,EAAE,EAAE,mBAAmB,EAAE,CAAC,CAAC;IACxD,CAAC;CACD","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport path from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { CLIBase } from \"@twin.org/cli-core\";\nimport type { Command } from \"commander\";\nimport { buildCommandAddress } from \"./commands/address.js\";\nimport { buildCommandMnemonic } from \"./commands/mnemonic.js\";\n\n/**\n * The main entry point for the CLI.\n */\nexport class CLI extends CLIBase {\n\t/**\n\t * Run the app.\n\t * @param argv The process arguments.\n\t * @param localesDirectory The directory for the locales, default to relative to the script.\n\t * @param options Additional options.\n\t * @param options.overrideOutputWidth Override the output width.\n\t * @returns The exit code.\n\t */\n\tpublic async run(\n\t\targv: string[],\n\t\tlocalesDirectory?: string,\n\t\toptions?: { overrideOutputWidth?: number }\n\t): Promise<number> {\n\t\treturn this.execute(\n\t\t\t{\n\t\t\t\ttitle: \"TWIN Crypto\",\n\t\t\t\tappName: \"twin-crypto\",\n\t\t\t\tversion: \"0.9.0\", // x-release-please-version\n\t\t\t\ticon: \"🔒\",\n\t\t\t\tsupportsEnvFiles: true,\n\t\t\t\toverrideOutputWidth: options?.overrideOutputWidth,\n\t\t\t\tshowDevToolWarning: true\n\t\t\t},\n\t\t\tlocalesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), \"../locales\"),\n\t\t\targv\n\t\t);\n\t}\n\n\t/**\n\t * Get the commands for the CLI.\n\t * @param program The main program to add the commands to.\n\t * @returns The commands to register with the CLI program.\n\t * @internal\n\t */\n\tprotected getCommands(program: Command): Command[] {\n\t\treturn [buildCommandMnemonic(), buildCommandAddress()];\n\t}\n}\n"]}
|
package/dist/locales/en.json
CHANGED
|
@@ -92,6 +92,7 @@
|
|
|
92
92
|
"email": "Property \"{property}\" must be string in e-mail format, it is \"{value}\"",
|
|
93
93
|
"uuidV7": "Property \"{property}\" must be a UUIDv7 formatted string, it is \"{value}\"",
|
|
94
94
|
"uuidV7Compact": "Property \"{property}\" must be a UUIDv7 formatted string in compact mode, it is \"{value}\"",
|
|
95
|
+
"duration": "Property \"{property}\" must be an ISO 8601 duration string, it is \"{value}\"",
|
|
95
96
|
"length32Multiple": "Property \"{property}\" should be a multiple of 32, it is {value}",
|
|
96
97
|
"lengthEntropy": "Property \"{property}\" should be a multiple of 4, >=16 and <= 32, it is {value}"
|
|
97
98
|
},
|
|
@@ -128,7 +129,13 @@
|
|
|
128
129
|
"lockNotFound": "The key \"{key}\" has no active lock",
|
|
129
130
|
"lockAlreadyReleased": "The key \"{key}\" is not currently locked",
|
|
130
131
|
"lockTimeout": "Failed to acquire lock for key \"{key}\" within the timeout of {timeout} milliseconds",
|
|
131
|
-
"bufferFetchFailed": "Failed to retrieve shared buffer for key \"{key}\" from the main thread"
|
|
132
|
+
"bufferFetchFailed": "Failed to retrieve shared buffer for key \"{key}\" from the main thread",
|
|
133
|
+
"invalidTimeout": "The timeout value \"{timeoutMs}\" is invalid, it must be a non-negative integer"
|
|
134
|
+
},
|
|
135
|
+
"sharedObjectBuffer": {
|
|
136
|
+
"notCreated": "The shared buffer for object \"{objectId}\" has not been created",
|
|
137
|
+
"capacityExceeded": "The payload size of {required} bytes exceeds the maximum capacity of {capacity} bytes for object \"{objectId}\"",
|
|
138
|
+
"bufferFetchFailed": "Failed to retrieve shared buffer for object \"{objectId}\" from the main thread"
|
|
132
139
|
},
|
|
133
140
|
"ed25519": {
|
|
134
141
|
"privateKeyLength": "The private key length is incorrect, it should be \"{requiredSize}\" but is \"{actualSize}\"",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,230 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.0](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.0...crypto-cli-v0.9.0) (2026-06-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
|
|
9
|
+
* release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
|
|
10
|
+
* release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
|
|
11
|
+
* release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
|
|
12
|
+
* release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
|
|
13
|
+
* release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
|
|
14
|
+
* release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
|
|
15
|
+
* release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
|
|
16
|
+
* release to production ([#382](https://github.com/iotaledger/twin-framework/issues/382)) ([bbed01a](https://github.com/iotaledger/twin-framework/commit/bbed01a605ee9724bda77a0f7feab249118c2d90))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Miscellaneous Chores
|
|
20
|
+
|
|
21
|
+
* release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
|
|
22
|
+
|
|
23
|
+
## [0.9.0-next.1](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.0-next.0...crypto-cli-v0.9.0-next.1) (2026-06-22)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
29
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
30
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
31
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
32
|
+
* typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
|
|
33
|
+
* update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
|
|
34
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
35
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
|
|
41
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Dependencies
|
|
45
|
+
|
|
46
|
+
* The following workspace dependencies were updated
|
|
47
|
+
* dependencies
|
|
48
|
+
* @twin.org/cli-core bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
49
|
+
* @twin.org/core bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
50
|
+
* @twin.org/crypto bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
51
|
+
* @twin.org/nameof bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
52
|
+
* devDependencies
|
|
53
|
+
* @twin.org/merge-locales bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
54
|
+
* @twin.org/nameof-transformer bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
55
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
56
|
+
* @twin.org/validate-locales bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
57
|
+
|
|
58
|
+
## [0.0.4-next.15](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.14...crypto-cli-v0.0.4-next.15) (2026-06-19)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Miscellaneous Chores
|
|
62
|
+
|
|
63
|
+
* **crypto-cli:** Synchronize repo versions
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Dependencies
|
|
67
|
+
|
|
68
|
+
* The following workspace dependencies were updated
|
|
69
|
+
* dependencies
|
|
70
|
+
* @twin.org/cli-core bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
71
|
+
* @twin.org/core bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
72
|
+
* @twin.org/crypto bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
73
|
+
* @twin.org/nameof bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
74
|
+
* devDependencies
|
|
75
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
76
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
77
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
78
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.14 to 0.0.4-next.15
|
|
79
|
+
|
|
80
|
+
## [0.0.4-next.14](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.13...crypto-cli-v0.0.4-next.14) (2026-06-18)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **crypto-cli:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Dependencies
|
|
89
|
+
|
|
90
|
+
* The following workspace dependencies were updated
|
|
91
|
+
* dependencies
|
|
92
|
+
* @twin.org/cli-core bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
93
|
+
* @twin.org/core bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
94
|
+
* @twin.org/crypto bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
95
|
+
* @twin.org/nameof bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
96
|
+
* devDependencies
|
|
97
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
98
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
99
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
100
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.13 to 0.0.4-next.14
|
|
101
|
+
|
|
102
|
+
## [0.0.4-next.13](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.12...crypto-cli-v0.0.4-next.13) (2026-06-18)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Miscellaneous Chores
|
|
106
|
+
|
|
107
|
+
* **crypto-cli:** Synchronize repo versions
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Dependencies
|
|
111
|
+
|
|
112
|
+
* The following workspace dependencies were updated
|
|
113
|
+
* dependencies
|
|
114
|
+
* @twin.org/cli-core bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
115
|
+
* @twin.org/core bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
116
|
+
* @twin.org/crypto bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
117
|
+
* @twin.org/nameof bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
118
|
+
* devDependencies
|
|
119
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
120
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
121
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
122
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.12 to 0.0.4-next.13
|
|
123
|
+
|
|
124
|
+
## [0.0.4-next.12](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.11...crypto-cli-v0.0.4-next.12) (2026-06-18)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Miscellaneous Chores
|
|
128
|
+
|
|
129
|
+
* **crypto-cli:** Synchronize repo versions
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Dependencies
|
|
133
|
+
|
|
134
|
+
* The following workspace dependencies were updated
|
|
135
|
+
* dependencies
|
|
136
|
+
* @twin.org/cli-core bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
137
|
+
* @twin.org/core bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
138
|
+
* @twin.org/crypto bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
139
|
+
* @twin.org/nameof bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
140
|
+
* devDependencies
|
|
141
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
142
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
143
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
144
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.11 to 0.0.4-next.12
|
|
145
|
+
|
|
146
|
+
## [0.0.4-next.11](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.10...crypto-cli-v0.0.4-next.11) (2026-06-15)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### Miscellaneous Chores
|
|
150
|
+
|
|
151
|
+
* **crypto-cli:** Synchronize repo versions
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Dependencies
|
|
155
|
+
|
|
156
|
+
* The following workspace dependencies were updated
|
|
157
|
+
* dependencies
|
|
158
|
+
* @twin.org/cli-core bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
159
|
+
* @twin.org/core bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
160
|
+
* @twin.org/crypto bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
161
|
+
* @twin.org/nameof bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
162
|
+
* devDependencies
|
|
163
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
164
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
165
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
166
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.10 to 0.0.4-next.11
|
|
167
|
+
|
|
168
|
+
## [0.0.4-next.10](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.9...crypto-cli-v0.0.4-next.10) (2026-06-15)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Features
|
|
172
|
+
|
|
173
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
174
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
175
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
176
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
177
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
178
|
+
* typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
|
|
179
|
+
* update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
|
|
180
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
181
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
185
|
+
|
|
186
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
187
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
188
|
+
* ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
|
|
189
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Dependencies
|
|
193
|
+
|
|
194
|
+
* The following workspace dependencies were updated
|
|
195
|
+
* dependencies
|
|
196
|
+
* @twin.org/cli-core bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
197
|
+
* @twin.org/core bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
198
|
+
* @twin.org/crypto bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
199
|
+
* @twin.org/nameof bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
200
|
+
* devDependencies
|
|
201
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
202
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
203
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
204
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.9 to 0.0.4-next.10
|
|
205
|
+
|
|
206
|
+
## [0.0.4-next.9](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.8...crypto-cli-v0.0.4-next.9) (2026-06-15)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Miscellaneous Chores
|
|
210
|
+
|
|
211
|
+
* **crypto-cli:** Synchronize repo versions
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
### Dependencies
|
|
215
|
+
|
|
216
|
+
* The following workspace dependencies were updated
|
|
217
|
+
* dependencies
|
|
218
|
+
* @twin.org/cli-core bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
219
|
+
* @twin.org/core bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
220
|
+
* @twin.org/crypto bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
221
|
+
* @twin.org/nameof bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
222
|
+
* devDependencies
|
|
223
|
+
* @twin.org/merge-locales bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
224
|
+
* @twin.org/nameof-transformer bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
225
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
226
|
+
* @twin.org/validate-locales bumped from 0.0.4-next.8 to 0.0.4-next.9
|
|
227
|
+
|
|
3
228
|
## [0.0.4-next.8](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.4-next.7...crypto-cli-v0.0.4-next.8) (2026-06-10)
|
|
4
229
|
|
|
5
230
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "0.0
|
|
18
|
-
"@twin.org/core": "0.0
|
|
19
|
-
"@twin.org/crypto": "0.0
|
|
20
|
-
"@twin.org/nameof": "0.0
|
|
21
|
-
"commander": "
|
|
17
|
+
"@twin.org/cli-core": "^0.9.0",
|
|
18
|
+
"@twin.org/core": "^0.9.0",
|
|
19
|
+
"@twin.org/crypto": "^0.9.0",
|
|
20
|
+
"@twin.org/nameof": "^0.9.0",
|
|
21
|
+
"commander": "15.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/es/index.js",
|
|
24
24
|
"types": "./dist/types/index.d.ts",
|