From 75da69f5606de103ce8b3c70e9623a01ac9917e5 Mon Sep 17 00:00:00 2001 From: kamataryo Date: Fri, 15 Feb 2019 20:21:44 +0900 Subject: [PATCH] Add whole babelrc configuration example --- packages/babel-plugin-makepot/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/babel-plugin-makepot/README.md b/packages/babel-plugin-makepot/README.md index 9f43abf09a00e8..6cade321228b30 100644 --- a/packages/babel-plugin-makepot/README.md +++ b/packages/babel-plugin-makepot/README.md @@ -3,9 +3,11 @@ Babel plugin used to scan JavaScript files for use of localization functions. It then compiles these into a [gettext POT formatted](https://en.wikipedia.org/wiki/Gettext) 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. ```json -[ "@wordpress/babel-plugin-makepot", { - "output": "languages/myplugin.pot" -} ] +{ + "plugins": [ + [ "@wordpress/babel-plugin-makepot", { "output": "languages/myplugin.pot" } ], + ] +} ``` ## Installation