Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Please ensure that your Magento installation meets this requirement before insta
| Theme Type | Support Status |
| ------------------------------- | ---------------------------------------------------------- |
| 🎯 Magento Standard | ✅ Fully Supported |
| 🚀 Hyvä | ✅ Fully Supported |
| 🚀 Hyvä (TailwindCSS 3.x / 4.x) | ✅ Fully Supported |
| 🔄 Hyvä Fallback | ✅ Fully Supported |
| 🎨 Custom TailwindCSS (no Hyvä) | ✅ Fully Supported |
| 💼 Avanta B2B | ✅ Fully Supported |
Expand All @@ -31,16 +31,16 @@ Please ensure that your Magento installation meets this requirement before insta

### Available Commands

| Command | Description | Shortcodes |
| Command | Description | Aliases |
| ----------------------------------- | --------------------------------------------------------- | ------------------------- |
| `mageforge:system:version` | Shows current and latest version of the module | `m:s:v` |
| `mageforge:system:check` | Get system information (OS, PHP, Database, Node.js, etc.) | `m:s:c` |
| `mageforge:theme:list` | Lists all available themes | `m:t:l` |
| `mageforge:theme:build` | Builds selected themes (CSS/TailwindCSS) | `m:t:b`, `frontend:build` |
| `mageforge:theme:watch` | Starts watch mode for theme development | `m:t:w`, `frontend:watch` |
| `mageforge:hyva:tokens` | Generate Hyvä design tokens (Hyvä themes only) | `m:h:t` |
| `mageforge:hyva:compatibility:check`| Check modules for Hyvä theme compatibility issues | `m:h:c:c`, `hyva:check` |
| `mageforge:theme:clean` | Clean theme static files and cache directories | `m:t:c`, `frontend:clean` |
| `mageforge:theme:list` | Lists all available themes | `frontend:list` |
| `mageforge:theme:build` | Builds selected themes (CSS/TailwindCSS) | `frontend:build` |
| `mageforge:theme:watch` | Starts watch mode for theme development | `frontend:watch` |
| `mageforge:theme:clean` | Clean theme static files and cache directories | `frontend:clean` |
| `mageforge:hyva:compatibility:check`| Check modules for Hyvä theme compatibility issues | `hyva:check` |
| `mageforge:hyva:tokens` | Generate Hyvä design tokens (Hyvä themes only) | `hyva:tokens` |
| `mageforge:system:version` | Shows current and latest version of the module | `system:version` |
| `mageforge:system:check` | Get system information (OS, PHP, Database, Node.js, etc.) | `system:check` |

---

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/Hyva/CompatibilityCheckCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function configure(): void
{
$this->setName($this->getCommandName('hyva', 'compatibility:check'))
->setDescription('Check modules for Hyvä theme compatibility issues')
->setAliases(['m:h:c:c', 'hyva:check'])
->setAliases(['hyva:check'])
->addOption(
self::OPTION_SHOW_ALL,
'a',
Expand Down
3 changes: 2 additions & 1 deletion src/Console/Command/System/CheckCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public function __construct(
protected function configure(): void
{
$this->setName($this->getCommandName('system', 'check'))
->setDescription('Displays system information like PHP version and Node.js version');
->setDescription('Displays system information like PHP version and Node.js version')
->setAliases(['system:check']);
}

/**
Expand Down
3 changes: 2 additions & 1 deletion src/Console/Command/System/VersionCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public function __construct(
protected function configure(): void
{
$this->setName($this->getCommandName('system', 'version'))
->setDescription('Displays the module version and the latest version');
->setDescription('Displays the module version and the latest version')
->setAliases(['system:version']);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/Theme/CleanCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected function configure(): void
InputOption::VALUE_NONE,
'Show what would be cleaned without actually deleting anything'
)
->setAliases(['m:t:c', 'frontend:clean']);
->setAliases(['frontend:clean']);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/Theme/TokensCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function __construct(
protected function configure(): void
{
$this->setName($this->getCommandName('hyva', 'tokens'))
->setAliases(['m:h:t'])
->setAliases(['hyva:tokens'])
->setDescription('Generate Hyvä design tokens from design.tokens.json or hyva.config.json')
->addArgument(
'themeCode',
Expand Down