diff --git a/bin.mjs b/bin.mjs index 5081b85..7cc8baa 100755 --- a/bin.mjs +++ b/bin.mjs @@ -174,36 +174,16 @@ try { ["remove", "Restore Notion desktop to its pre-enhanced state."], ["check", "Report Notion desktop's enhancement state."], ], + // prettier-ignore options = [ // ["alias, option=example", [type, "description"]] - [ - "--path=", - [String, "Manually provide a Notion installation location."], - ], - [ - "--no-backup", - [Boolean, "Skip backup; enhancement will be irreversible."], - ], - [ - "--json", - [Boolean, "Output JSON from the `check` and `--version` commands."], - ], - [ - "-y, --yes", - [Boolean, 'Skip prompts; assume "yes" and run non-interactively.'], - ], - [ - "-n, --no", - [Boolean, 'Skip prompts; assume "no" and run non-interactively.'], - ], - [ - "-q, --quiet", - [Boolean, 'Skip prompts; assume "no" unless -y and hide all output.'], - ], - [ - "-d, --debug", - [Boolean, "Show detailed error messages and keep extracted files."], - ], + ["--path=", [String, "Manually provide a Notion installation location."]], + ["--no-backup", [Boolean, "Skip backup; enhancement will be irreversible."]], + ["--json", [Boolean, "Output JSON from the `check` and `--version` commands."]], + ["-y, --yes", [Boolean, 'Skip prompts; assume "yes" and run non-interactively.']], + ["-n, --no", [Boolean, 'Skip prompts; assume "no" and run non-interactively.']], + ["-q, --quiet", [Boolean, 'Skip prompts; assume "no" unless -y and hide all output.']], + ["-d, --debug", [Boolean, "Show detailed error messages and keep extracted files."]], ["-h, --help", [Boolean, "Display usage information for this CLI."]], ["-v, --version", [Boolean, "Display this CLI's version number."]], ]; diff --git a/package.json b/package.json index 0fc08d1..d73fca9 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "extensions", "themes", "integrations", + "addons", "mod", "mods", "mod-loader", diff --git a/src/core/islands/MenuButton.mjs b/src/core/islands/MenuButton.mjs index b9edb63..75181ca 100644 --- a/src/core/islands/MenuButton.mjs +++ b/src/core/islands/MenuButton.mjs @@ -12,10 +12,10 @@ function MenuButton( extendProps(props, { tabindex: 0, role: "button", - class: `notion-enhancer--menu-button - flex select-none cursor-pointer rounded-[3px] - text-[14px] my-px mx-[4px] py-[2px] px-[10px] - transition hover:bg-[color:var(--theme--bg-hover)]`, + class: `notion-enhancer--menu-button flex select-none + cursor-pointer rounded-[6px] text-[14px] font-medium + transition hover:bg-[color:var(--theme--bg-hover)] + w-full h-[30px] px-[8px] py-[4px] items-center`, }); return html`