1.0.0 • Published 3 years ago

@automattic/babel-plugin-preserve-i18n v1.0.0

Weekly downloads
-
License
GPL-2.0-or-later
Repository
github
Last release
3 years ago

Babel plugin optimize i18n

Babel plugin that transforms this:

import { __, _x } from '@wordpress/i18n';

__( 'Hello' );
_x( 'World' );

to this:

import { __ as alias__, _x as alias_x } from '@wordpress/i18n';
const __ = alias__;
const _x = alias_x;

__( 'Hello' );
_x( 'World' );

Inspired by babel-plugin-optimize-react that does similar transforms for React imports.

The transform ensures that the __('Hello') syntax remains intact in the output bundle (and even after minification if Terser uses the mangle.reserved option) and can be extracted by WP i18n tools.