@wordpress/babel-plugin-makepot Edit

Babel plugin used to scan JavaScript files for use of localization functions. It then compiles these into a gettext POT formatted file as a template for translation. By default the output file will be written to gettext.pot of the root project directory. This can be overridden using the "output" option of the plugin.

{
    "plugins": [
        [
            "@wordpress/babel-plugin-makepot",
            { "output": "languages/myplugin.pot" }
        ]
    ]
}

Installation

Install the module:

npm install @wordpress/babel-plugin-makepot --save-dev

Note: This package requires Node.js 12.0.0 or later. It is not compatible with older versions.

Code is Poetry.