@twin.org/cli-core 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 +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +15 -0
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -81,7 +81,7 @@ class CLIDisplay {
|
|
|
81
81
|
if (lineBreaks) {
|
|
82
82
|
CLIDisplay.writeError("\n");
|
|
83
83
|
}
|
|
84
|
-
const formatted = core.ErrorHelper.formatErrors(error);
|
|
84
|
+
const formatted = core.ErrorHelper.formatErrors(error, true);
|
|
85
85
|
CLIDisplay.writeError(chalk.red(formatted.map(e => `\t${e}`).join("\n")));
|
|
86
86
|
if (lineBreaks) {
|
|
87
87
|
CLIDisplay.writeError("\n");
|
package/dist/esm/index.mjs
CHANGED
|
@@ -60,7 +60,7 @@ class CLIDisplay {
|
|
|
60
60
|
if (lineBreaks) {
|
|
61
61
|
CLIDisplay.writeError("\n");
|
|
62
62
|
}
|
|
63
|
-
const formatted = ErrorHelper.formatErrors(error);
|
|
63
|
+
const formatted = ErrorHelper.formatErrors(error, true);
|
|
64
64
|
CLIDisplay.writeError(chalk.red(formatted.map(e => `\t${e}`).join("\n")));
|
|
65
65
|
if (lineBreaks) {
|
|
66
66
|
CLIDisplay.writeError("\n");
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @twin.org/cli-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.59...cli-core-v0.0.1-next.60) (2025-06-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
16
|
+
* @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
17
|
+
|
|
3
18
|
## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.58...cli-core-v0.0.1-next.59) (2025-06-17)
|
|
4
19
|
|
|
5
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/cli-core",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.60",
|
|
4
4
|
"description": "Core classes for building a CLI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/core": "0.0.1-next.
|
|
18
|
-
"@twin.org/crypto": "0.0.1-next.
|
|
17
|
+
"@twin.org/core": "0.0.1-next.60",
|
|
18
|
+
"@twin.org/crypto": "0.0.1-next.60",
|
|
19
19
|
"@twin.org/nameof": "next",
|
|
20
20
|
"chalk": "5.4.1",
|
|
21
21
|
"commander": "14.0.0",
|