@sunasteriskrnd/takumi 1.0.0-dev.60 → 1.0.0-dev.61

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -19815,7 +19815,7 @@ var package_default;
19815
19815
  var init_package = __esm(() => {
19816
19816
  package_default = {
19817
19817
  name: "@sunasteriskrnd/takumi",
19818
- version: "1.0.0-dev.60",
19818
+ version: "1.0.0-dev.61",
19819
19819
  description: "CLI tool for bootstrapping and managing Takumi projects",
19820
19820
  type: "module",
19821
19821
  repository: {
@@ -20012,7 +20012,7 @@ function getLegacyManifestPath(providerRoot) {
20012
20012
  return join4(providerRoot, LEGACY_MANIFEST_FILENAME);
20013
20013
  }
20014
20014
  function getCliVersion() {
20015
- return "1.0.0-dev.60"?.trim() || process.env.npm_package_version?.trim() || "unknown";
20015
+ return "1.0.0-dev.61"?.trim() || process.env.npm_package_version?.trim() || "unknown";
20016
20016
  }
20017
20017
  function getCliUserAgent() {
20018
20018
  return `${TAKUMI_CLI_NPM_PACKAGE_NAME}/${getCliVersion()}`;
@@ -52025,8 +52025,8 @@ function renderHelp(help, context = { globalHelp: false, options: DEFAULT_HELP_O
52025
52025
  const sections = [
52026
52026
  renderBanner2(options2),
52027
52027
  renderDeprecationWarning(help, theme),
52028
- renderCommandHeader(help, theme),
52029
- "",
52028
+ `${renderCommandHeader(help, theme)}
52029
+ `,
52030
52030
  renderUsage(help, theme),
52031
52031
  renderExamples(help, options2),
52032
52032
  renderOptionGroups(help, theme),
@@ -52132,7 +52132,7 @@ async function handleHelp(_args) {
52132
52132
  output3 = renderHelp(help, {
52133
52133
  command: help.name,
52134
52134
  globalHelp: false,
52135
- options: options2
52135
+ options: { ...options2, showBanner: false }
52136
52136
  });
52137
52137
  }
52138
52138
  await displayHelp(output3, options2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunasteriskrnd/takumi",
3
- "version": "1.0.0-dev.60",
3
+ "version": "1.0.0-dev.61",
4
4
  "description": "CLI tool for bootstrapping and managing Takumi projects",
5
5
  "type": "module",
6
6
  "repository": {