@twin.org/crypto-cli 0.0.2-next.6 → 0.0.2-next.7
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 +21 -0
- package/package.json +5 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -181,7 +181,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
181
181
|
return this.execute({
|
|
182
182
|
title: "TWIN Crypto",
|
|
183
183
|
appName: "twin-crypto",
|
|
184
|
-
version: "0.0.2-next.
|
|
184
|
+
version: "0.0.2-next.7", // x-release-please-version
|
|
185
185
|
icon: "🌍",
|
|
186
186
|
supportsEnvFiles: true,
|
|
187
187
|
overrideOutputWidth: options?.overrideOutputWidth,
|
package/dist/esm/index.mjs
CHANGED
|
@@ -178,7 +178,7 @@ class CLI extends CLIBase {
|
|
|
178
178
|
return this.execute({
|
|
179
179
|
title: "TWIN Crypto",
|
|
180
180
|
appName: "twin-crypto",
|
|
181
|
-
version: "0.0.2-next.
|
|
181
|
+
version: "0.0.2-next.7", // x-release-please-version
|
|
182
182
|
icon: "🌍",
|
|
183
183
|
supportsEnvFiles: true,
|
|
184
184
|
overrideOutputWidth: options?.overrideOutputWidth,
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.6...crypto-cli-v0.0.2-next.7) (2025-08-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/cli-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
16
|
+
* @twin.org/core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
17
|
+
* @twin.org/crypto bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
18
|
+
* @twin.org/nameof bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
19
|
+
* devDependencies
|
|
20
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
21
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
22
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
23
|
+
|
|
3
24
|
## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.5...crypto-cli-v0.0.2-next.6) (2025-08-27)
|
|
4
25
|
|
|
5
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.7",
|
|
4
4
|
"description": "A command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "0.0.2-next.
|
|
18
|
-
"@twin.org/core": "0.0.2-next.
|
|
19
|
-
"@twin.org/crypto": "0.0.2-next.
|
|
20
|
-
"@twin.org/nameof": "0.0.2-next.
|
|
17
|
+
"@twin.org/cli-core": "0.0.2-next.7",
|
|
18
|
+
"@twin.org/core": "0.0.2-next.7",
|
|
19
|
+
"@twin.org/crypto": "0.0.2-next.7",
|
|
20
|
+
"@twin.org/nameof": "0.0.2-next.7",
|
|
21
21
|
"commander": "14.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|