@twin.org/crypto-cli 0.0.2-next.4 → 0.0.2-next.5
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 +3 -2
- package/dist/esm/index.mjs +3 -2
- package/dist/locales/en.json +5 -0
- package/docs/changelog.md +21 -0
- package/package.json +5 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -181,10 +181,11 @@ 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.5", // x-release-please-version
|
|
185
185
|
icon: "🌍",
|
|
186
186
|
supportsEnvFiles: true,
|
|
187
|
-
overrideOutputWidth: options?.overrideOutputWidth
|
|
187
|
+
overrideOutputWidth: options?.overrideOutputWidth,
|
|
188
|
+
showDevToolWarning: true
|
|
188
189
|
}, localesDirectory ?? path.join(path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)))), "../locales"), argv);
|
|
189
190
|
}
|
|
190
191
|
/**
|
package/dist/esm/index.mjs
CHANGED
|
@@ -178,10 +178,11 @@ 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.5", // x-release-please-version
|
|
182
182
|
icon: "🌍",
|
|
183
183
|
supportsEnvFiles: true,
|
|
184
|
-
overrideOutputWidth: options?.overrideOutputWidth
|
|
184
|
+
overrideOutputWidth: options?.overrideOutputWidth,
|
|
185
|
+
showDevToolWarning: true
|
|
185
186
|
}, localesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), "../locales"), argv);
|
|
186
187
|
}
|
|
187
188
|
/**
|
package/dist/locales/en.json
CHANGED
|
@@ -184,6 +184,11 @@
|
|
|
184
184
|
"invalidKeySize": "Invalid RSA key size"
|
|
185
185
|
}
|
|
186
186
|
},
|
|
187
|
+
"warn": {
|
|
188
|
+
"common": {
|
|
189
|
+
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
190
|
+
}
|
|
191
|
+
},
|
|
187
192
|
"cli": {
|
|
188
193
|
"progress": {
|
|
189
194
|
"done": "Done.",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.4...crypto-cli-v0.0.2-next.5) (2025-08-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
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.4 to 0.0.2-next.5
|
|
16
|
+
* @twin.org/core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
17
|
+
* @twin.org/crypto bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
18
|
+
* @twin.org/nameof bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
19
|
+
* devDependencies
|
|
20
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
21
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
22
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
23
|
+
|
|
3
24
|
## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.3...crypto-cli-v0.0.2-next.4) (2025-08-15)
|
|
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.5",
|
|
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.5",
|
|
18
|
+
"@twin.org/core": "0.0.2-next.5",
|
|
19
|
+
"@twin.org/crypto": "0.0.2-next.5",
|
|
20
|
+
"@twin.org/nameof": "0.0.2-next.5",
|
|
21
21
|
"commander": "14.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|