git-stack-cli 0.4.2 → 0.5.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/app/App.js +2 -2
- package/dist/app/Store.js +1 -1
- package/dist/command.js +3 -3
- package/package.json +1 -1
package/dist/app/App.js
CHANGED
|
@@ -27,9 +27,9 @@ export function App() {
|
|
|
27
27
|
return (React.createElement(Providers, null,
|
|
28
28
|
React.createElement(Debug, null),
|
|
29
29
|
React.createElement(Output, null),
|
|
30
|
-
!argv.
|
|
30
|
+
!argv.verbose ? null : React.createElement(GithubApiError, null),
|
|
31
31
|
React.createElement(DependencyCheck, null,
|
|
32
|
-
React.createElement(AutoUpdate, { name: "git-stack-cli", verbose: argv.
|
|
32
|
+
React.createElement(AutoUpdate, { name: "git-stack-cli", verbose: argv.verbose, onOutput: actions.output },
|
|
33
33
|
React.createElement(GatherMetadata, null,
|
|
34
34
|
React.createElement(LocalCommitStatus, null,
|
|
35
35
|
React.createElement(Main, null)))))));
|
package/dist/app/Store.js
CHANGED
package/dist/command.js
CHANGED
|
@@ -18,10 +18,10 @@ export async function command() {
|
|
|
18
18
|
type: "boolean",
|
|
19
19
|
description: "Disable the pre-push hook, bypassing it completely",
|
|
20
20
|
})
|
|
21
|
-
.option("
|
|
21
|
+
.option("verbose", {
|
|
22
22
|
type: "boolean",
|
|
23
|
-
alias: ["
|
|
24
|
-
description: "Enable
|
|
23
|
+
alias: ["v"],
|
|
24
|
+
description: "Enable verbose mode with more detailed output for debugging",
|
|
25
25
|
})
|
|
26
26
|
.option("write-state-json", {
|
|
27
27
|
hidden: true,
|