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 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.debug ? null : React.createElement(GithubApiError, null),
30
+ !argv.verbose ? null : React.createElement(GithubApiError, null),
31
31
  React.createElement(DependencyCheck, null,
32
- React.createElement(AutoUpdate, { name: "git-stack-cli", verbose: argv.debug, onOutput: actions.output },
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
@@ -85,7 +85,7 @@ const BaseStore = createStore()(immer((set, get) => ({
85
85
  },
86
86
  select: {
87
87
  debug(state) {
88
- return state.argv?.debug || false;
88
+ return state.argv?.verbose || false;
89
89
  },
90
90
  },
91
91
  })));
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("debug", {
21
+ .option("verbose", {
22
22
  type: "boolean",
23
- alias: ["verbose", "v", "d"],
24
- description: "Enable debug mode with more detailed output for debugging",
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-stack-cli",
3
- "version": "0.4.2",
3
+ "version": "0.5.0",
4
4
  "description": "",
5
5
  "author": "magus",
6
6
  "license": "MIT",