@twin.org/crypto-cli 0.0.1-next.64 → 0.0.1-next.65
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 +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +16 -0
- package/package.json +4 -4
package/dist/cjs/index.cjs
CHANGED
|
@@ -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.65", // x-release-please-version
|
|
197
197
|
icon: "🌍",
|
|
198
198
|
supportsEnvFiles: true,
|
|
199
199
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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.65", // x-release-please-version
|
|
194
194
|
icon: "🌍",
|
|
195
195
|
supportsEnvFiles: true,
|
|
196
196
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.64...crypto-cli-v0.0.1-next.65) (2025-06-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **crypto-cli:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/cli-core bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
16
|
+
* @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
17
|
+
* @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
18
|
+
|
|
3
19
|
## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.63...crypto-cli-v0.0.1-next.64) (2025-06-19)
|
|
4
20
|
|
|
5
21
|
|
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.65",
|
|
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.65",
|
|
18
|
+
"@twin.org/core": "0.0.1-next.65",
|
|
19
|
+
"@twin.org/crypto": "0.0.1-next.65",
|
|
20
20
|
"@twin.org/nameof": "next",
|
|
21
21
|
"commander": "14.0.0"
|
|
22
22
|
},
|