Yireo DumpCmsContent

yireo/magento2-dump-cms-content

Adds a CLI command (cms:dump) that exports all CMS pages and blocks to var/cms-output, enabling Tailwind CSS purge in Hyva builds to detect classes used inside database-stored content.

No errors foundPHPStan level 2Build passingTrusted vendor

Supported Magento versions: 2.4.9

11,852 installs★ 17 starsLatest: v1.0.0Released 2025-10-09License: OSL-3.0

composer require yireo/magento2-dump-cms-content

README

Reproduced from the package’s own README, under its own license, as of 2026-09-13. Links and images point back at the source repository.

Yireo DumpCmsContent

Magento version PHP version License Latest Version

A Magento 2 module that adds a CLI bin/magento cms:dump to dump all CMS pages and CMS blocks to a folder var/cms-output.

Why?

This module was developed with Hyva Themes in mind: With a theme based on Hyva, your Tailwind CSS will need to be purged before going into production. For this, you would configure the Tailwind configuration to look into certain content folders to make sure CSS utility classes that are actually used, are not purged from the production CSS. Unfortunately, this does not work with the database.

Once you add Tailwind CSS classes to your CMS Blocks and CMS Pages (via the Magento Admin Panel, for instance by using some Tailwind-oriented WYSIWYG editor, or by inserting code manually), these CSS classes might or might not be purged, which could lead to incorrect CSS styling. To prevent this from happening, this module allows you to dump CMS contents to a folder var/cms-output, which could then be included in the Tailwind configuration:

module.exports = {
    ...
    purge: {
        content: [
            ...
            '../../../../../../../var/cms-output/**/*.html'
        ]
    }
}

Current status

Static Tests Unit Tests Integration Tests Playwright DI Compilation

← All packages from yireo