{"id":21013172,"url":"https://github.com/akameco/babel-plugin-react-intl-auto","last_synced_at":"2025-05-16T08:06:59.986Z","repository":{"id":38272684,"uuid":"89073535","full_name":"akameco/babel-plugin-react-intl-auto","owner":"akameco","description":"i18n for the component age. Auto management react-intl ID.","archived":false,"fork":false,"pushed_at":"2023-01-05T16:17:20.000Z","size":4991,"stargazers_count":211,"open_issues_count":55,"forks_count":34,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-05T03:03:04.221Z","etag":null,"topics":["auto","babel","babel-plugin","component","i18n","react","react-intl"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akameco.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-22T13:56:28.000Z","updated_at":"2024-09-26T21:25:24.000Z","dependencies_parsed_at":"2023-02-04T06:45:56.535Z","dependency_job_id":null,"html_url":"https://github.com/akameco/babel-plugin-react-intl-auto","commit_stats":null,"previous_names":[],"tags_count":45,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akameco%2Fbabel-plugin-react-intl-auto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akameco%2Fbabel-plugin-react-intl-auto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akameco%2Fbabel-plugin-react-intl-auto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akameco%2Fbabel-plugin-react-intl-auto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akameco","download_url":"https://codeload.github.com/akameco/babel-plugin-react-intl-auto/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253349910,"owners_count":21894795,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["auto","babel","babel-plugin","component","i18n","react","react-intl"],"created_at":"2024-11-19T09:40:30.028Z","updated_at":"2025-05-16T08:06:54.979Z","avatar_url":"https://github.com/akameco.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# babel-plugin-react-intl-auto\n\n[![test](https://github.com/akameco/babel-plugin-react-intl-auto/workflows/test/badge.svg)](https://github.com/akameco/babel-plugin-react-intl-auto/actions?query=workflow%3Atest)\n[![Coverage Status](https://coveralls.io/repos/github/akameco/babel-plugin-react-intl-auto/badge.svg?branch=master)](https://coveralls.io/github/akameco/babel-plugin-react-intl-auto?branch=master)\n[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)\n[![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest)\n[![All Contributors](https://img.shields.io/badge/all_contributors-16-orange.svg?style=flat-square)](#contributors-)\n[![babel-plugin-react-intl-auto Dev Token](https://badge.devtoken.rocks/babel-plugin-react-intl-auto)](https://devtoken.rocks/package/babel-plugin-react-intl-auto)\n\n\u003e i18n for the component age. Auto management react-intl ID.\n\n[React Intl](https://github.com/formatjs/react-intl) is awesome. But, Global ID management is difficult and confusing.\n\nMany projects, like [react-boilerplate](https://github.com/react-boilerplate/react-boilerplate), give the ID to the name of the component as a prefix.\nBut it is redundant and troublesome.\n\nThis babel-plugin releases you from cumbersome ID management.\nBased on the file path, this automatically generates a prefixed id.\n\nAlso, we strongly encourage you to use [extract-react-intl-messages](https://github.com/akameco/extract-react-intl-messages).\nYou can generate json automatically.\n\nGoodbye, global ID!!\n\n#### Before\n\n```js\nimport { defineMessages, FormattedMessage } from 'react-intl'\n\nexport default defineMessages({\n  hello: {\n    id: 'App.Components.Greeting.hello',\n    defaultMessage: 'hello {name}',\n  },\n  welcome: {\n    id: 'App.Components.Greeting.welcome',\n    defaultMessage: 'Welcome!',\n  },\n})\n\nconst MyComponent = () =\u003e (\n  \u003cFormattedMessage\n    id=\"App.Components.Greeting.goodbye\"\n    defaultMessage=\"goodbye {name}\"\n  /\u003e\n)\n```\n\n#### After\n\nWith babel-plugin-react-intl-auto.\n\n```js\nimport { defineMessages, FormattedMessage } from 'react-intl'\n\nexport default defineMessages({\n  hello: 'hello {name}',\n  welcome: 'Welcome!',\n})\n\nconst MyComponent = () =\u003e \u003cFormattedMessage defaultMessage=\"goodbye {name}\" /\u003e\n```\n\nSee [examples](https://github.com/akameco/babel-plugin-react-intl-auto/tree/master/examples).\n\n### With `extract-react-intl-messages`\n\nExample usage with [extract-react-intl-messages](https://github.com/akameco/extract-react-intl-messages).\n\n```\n$ extract-messages -l=en -o translations 'src/**/*.js'\n```\n\nen.json\n\n```json\n{\n  \"components.App.hello\": \"hello {name}\",\n  \"components.App.welcome\": \"Welcome\",\n  \"components.App.189751785\": \"goodbye {name}\" // unique hash of defaultMessage\n}\n```\n\n## Install\n\nnpm\n\n```shell\n$ npm install --save-dev babel-plugin-react-intl-auto\n\n# Optional: TypeScript support\n$ npm install --save-dev @babel/plugin-transform-typescript\n```\n\nyarn\n\n```shell\n$ yarn add --dev babel-plugin-react-intl-auto\n\n# Optional: TypeScript support\n$ yarn add --dev @babel/plugin-transform-typescript\n```\n\n## Usage\n\n.babelrc\n\n```json\n{\n  \"plugins\": [\n    [\n      \"react-intl-auto\",\n      {\n        \"removePrefix\": \"app/\",\n        \"filebase\": false\n      }\n    ]\n  ]\n}\n```\n\n### with injectIntl\n\nInput:\n\n```js\nimport { injectIntl } from 'react-intl'\n\nconst MyComponent = ({ intl }) =\u003e {\n  const label = intl.formatMessage({ defaultMessage: 'Submit button' })\n  return \u003cbutton aria-label={label}\u003e{label}\u003c/button\u003e\n}\n\ninjectIntl(MyComponent)\n```\n\n↓ 　 ↓ 　 ↓\n\nOutput:\n\n```js\nimport { injectIntl } from 'react-intl'\n\nconst MyComponent = ({ intl }) =\u003e {\n  const label = intl.formatMessage({\n    id: 'App.Components.Button.label',\n    defaultMessage: 'Submit button',\n  })\n  return \u003cbutton aria-label={label}\u003e{label}\u003c/button\u003e\n}\n\ninjectIntl(MyComponent)\n```\n\n### with useIntl\n\nInput:\n\n```js\nimport { useIntl } from 'react-intl'\n\nconst MyComponent = () =\u003e {\n  const intl = useIntl()\n  const label = intl.formatMessage({ defaultMessage: 'Submit button' })\n  return \u003cbutton aria-label={label}\u003e{label}\u003c/button\u003e\n}\n```\n\n↓ 　 ↓ 　 ↓\n\nOutput:\n\n```js\nimport { useIntl } from 'react-intl'\n\nconst MyComponent = () =\u003e {\n  const intl = useIntl()\n  const label = intl.formatMessage({\n    id: 'App.Components.Button.label',\n    defaultMessage: 'Submit button',\n  })\n  return \u003cbutton aria-label={label}\u003e{label}\u003c/button\u003e\n}\n```\n\n### Options\n\n#### removePrefix\n\nremove prefix.\n\nType: `string | boolean` | `regexp` \u003cbr\u003e\nDefault: `''`\n\nif `removePrefix` is `true`, no file path prefix is included in the id.\n\n##### Example (src/components/App/messages.js)\n\nwhen `removePrefix` is `\"src\"`\n\n```js\nimport { defineMessages } from 'react-intl';\n\nexport default defineMessages({\n  hello: 'hello world'\n});\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nimport { defineMessages } from 'react-intl';\n\nexport default defineMessages({\n  hello: {\n    id: 'components.App.hello',\n    defaultMessage: 'hello world'\n  }\n});\n```\n\nwhen `removePrefix` is `\"src.components\"`\n\n```js\nimport { defineMessages } from 'react-intl';\n\nexport default defineMessages({\n  hello: 'hello world'\n});\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nimport { defineMessages } from 'react-intl';\n\nexport default defineMessages({\n  hello: {\n    id: 'App.hello',\n    defaultMessage: 'hello world'\n  }\n});\n```\n\nwhen `removePrefix` is `true`\n\n```js\nimport { defineMessages } from 'react-intl';\n\nexport default defineMessages({\n  hello: 'hello world'\n});\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nimport { defineMessages } from 'react-intl';\n\nexport default defineMessages({\n  hello: {\n    id: 'hello',\n    defaultMessage: 'hello world'\n  }\n});\n```\n\n#### filebase\n\nType: `boolean` \u003cbr\u003e\nDefault: `false`\n\nif `filebase` is `true`, generate id with filename.\n\n#### moduleSourceName\n\nType: `string` \u003cbr\u003e\nDefault: `react-intl`\n\nif set, enables to use custom module as a source for _defineMessages_ etc.\n\nhttps://github.com/akameco/babel-plugin-react-intl-auto/issues/74#issuecomment-528562743\n\n#### includeExportName\n\nType: `boolean | 'all'` \u003cbr\u003e\nDefault: `false`\n\nif `includeExportName` is `true`, adds named exports as part of the id.\n\nOnly works with `defineMessages`.\n\n##### Example\n\n```js\nexport const test = defineMessages({\n  hello: 'hello {name}',\n})\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nexport const test = defineMessages({\n  hello: {\n    id: 'path.to.file.test.hello',\n    defaultMessage: 'hello {name}',\n  },\n})\n```\n\nIf includeExportName is `'all'`, it will also add `default` to the id on default\nexports.\n\n#### extractComments\n\nUse leading comments as the message description.\n\nOnly works with `defineMessages`\n\nType: `boolean` \u003cbr\u003e\nDefault: `true`\n\n##### Example\n\n```js\nexport const test = defineMessages({\n  // Message used to greet the user\n  hello: 'hello {name}',\n})\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nexport const test = defineMessages({\n  hello: {\n    id: 'path.to.file.test.hello',\n    defaultMessage: 'hello {name}',\n    description: 'Message used to greet the user',\n  },\n})\n```\n\n#### useKey\n\nOnly works with `intl.formatMessage`, `FormattedMessage` and `FormattedHTMLMessage`. Instead of\ngenerating an ID by hashing `defaultMessage`, it will use the `key` property if\nit exists.\n\nType: `boolean` \u003cbr\u003e\nDefault: `false`\n\n##### Example\n\n```js\nintl.formatMessage({\n  key: 'foobar',\n  defaultMessage: 'hello'\n});\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nintl.formatMessage({\n  key: 'foobar',\n  defaultMessage: 'hello',\n  \"id\": \"path.to.file.foobar\"\n});\n```\n\n```js\n\u003cFormattedMessage key=\"foobar\" defaultMessage=\"hello\" /\u003e\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\n\u003cFormattedMessage id=\"path.to.file.foobar\" key=\"foobar\" defaultMessage=\"hello\" /\u003e\n```\n\n#### separator\n\nAllows you to specify a custom separator\n\nType: `string` \u003cbr\u003e\nDefault: `.`\n\n##### Example\n\nwhen `separator` is `\"_\"`\n\n```js\nexport const test = defineMessages({\n  hello: 'hello {name}',\n})\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nexport const test = defineMessages({\n  hello: {\n    id: 'path_to_file_test_hello',\n    defaultMessage: 'hello {name}',\n  },\n})\n```\n\n#### relativeTo\n\nAllows you to specify the directory that is used when determining a file's prefix.\n\nThis option is useful for monorepo setups.\n\nType: `string` \u003cbr\u003e\nDefault: `process.cwd()`\n\n##### Example\n\nFolder structure with two sibling packages. `packageB` contains babel config and depends on `packageA`.\n\n```bash\n|- packageA\n| |\n|  -- componentA\n|\n|- packageB\n| |\n|  -- componentB\n| |\n|  -- .babelrc\n```\n\nSet `relativeTo` to parent directory in `packageB` babel config\n\n```js\n{\n  \"plugins\": [\n    [\n      \"react-intl-auto\",\n      {\n        \"relativeTo\": \"..\",\n        // ...\n      },\n    ],\n  ]\n}\n```\n\nRun babel in packageB\n\n```bash\ncd packageB \u0026\u0026 babel\n```\n\nMessages in `componentA` are prefixed relative to the project root\n\n```js\nexport const test = defineMessages({\n  hello: 'hello {name}',\n})\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nexport const test = defineMessages({\n  hello: {\n    id: 'packageA.componentA.hello',\n    defaultMessage: 'hello {name}',\n  },\n})\n```\n\n### Support variable\n\n##### Example\n\n```js\nconst messages = { hello: 'hello world' }\n\nexport default defineMessages(messages)\n\n      ↓ ↓ ↓ ↓ ↓ ↓\n\nconst messages = {\n  hello: {\n    id: 'path.to.file.hello',\n    defaultMessage: 'hello wolrd'\n  }\n};\n\nexport default defineMessages(messages);\n```\n\n## TypeScript\n\nTypeScript support is bundled with this package. Be sure to include our type\ndefinition and run `@babel/plugin-transform-typescript` beforehand. This way,\nyou can also be empowered by [extract-react-intl-messages](https://github.com/akameco/extract-react-intl-messages).\n\n### tsconfig.json\n\n```json\n{\n  \"compilerOptions\": {\n    // ...\n    \"jsx\": \"preserve\"\n    // ...\n  },\n  \"include\": [\"node_modules/babel-plugin-react-intl-auto/**/*.d.ts\"]\n}\n```\n\n### .babelrc\n\n```json\n{\n  \"plugins\": [[\"@babel/plugin-transform-typescript\"], [\"react-intl-auto\"]]\n}\n```\n\n### webpack.config.js\n\nUse `babel-loader` along with `ts-loader` when using webpack as well.\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.tsx?$/,\n        exclude: [/node_modules/],\n        use: [\n          {\n            loader: 'babel-loader',\n          },\n          {\n            loader: 'ts-loader',\n          },\n        ],\n      },\n    ],\n  },\n}\n```\n\n## Related\n\n### [babel-plugin-react-intl-id-hash](https://github.com/adam-26/babel-plugin-react-intl-id-hash)\n\nIf you want short consistent hash values for the ID, you can use [react-intl-id-hash](https://github.com/adam-26/babel-plugin-react-intl-id-hash) in addition to this plugin to help reduce your applications bundle size.\n\n### [extract-react-intl-messages](https://github.com/akameco/extract-react-intl-messages)\n\nExtract react-intl messages.\n\n## Contributors\n\nThanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://akameco.github.io\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/4002137?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eakameco\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=akameco\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=akameco\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/pulls?q=is%3Apr+reviewed-by%3Aakameco\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=akameco\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://alxandr.me\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/112334?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAleksander Heintz\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=Alxandr\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=Alxandr\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/mehcode\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/753919?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRyan Leckey\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=mehcode\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/adam-26\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/2652619?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAdam\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=adam-26\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=adam-26\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://ephys.github.io\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/1280915?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGuylian Cox\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=Ephys\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=Ephys\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=Ephys\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://carlgrundberg.github.io/\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/928407?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eCarl Grundberg\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#example-carlgrundberg\" title=\"Examples\"\u003e💡\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=carlgrundberg\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://bradbarrow.com\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1264276?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ebradbarrow\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=bradbarrow\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=bradbarrow\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=bradbarrow\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/mgtitimoli\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/4404683?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMauro Gabriel Titimoli\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=mgtitimoli\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=mgtitimoli\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/stanislav-ermakov\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/15980086?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eStanislav Ermakov\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=stanislav-ermakov\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://chitoku.jp/\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6535425?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChitoku\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=chitoku-k\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/kuma-kuma\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/12218082?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKouta Kumagai\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=kuma-kuma\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=kuma-kuma\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=kuma-kuma\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://shah.yar.gs\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/255846?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eShahyar G\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=shahyar\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://gitlab.com/remcohaszing\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/779047?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRemco Haszing\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=remcohaszing\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/jmarceli\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/4281333?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ejmarceli\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=jmarceli\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=jmarceli\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/dominik-zeglen\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/6833443?v=4\" width=\"100px;\" alt=\"Dominik Żegleń\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDominik Żegleń\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=dominik-zeglen\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=dominik-zeglen\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/Filson14\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/4540538?v=4\" width=\"100px;\" alt=\"Filip \"Filson\" Pasternak\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFilip \"Filson\" Pasternak\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=Filson14\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/ericmasiello\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/3525886?v=4\" width=\"100px;\" alt=\"Eric Masiello\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eEric Masiello\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=ericmasiello\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=ericmasiello\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/pooleparty\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/5461259?v=4\" width=\"100px;\" alt=\"Josh Poole\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJosh Poole\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=pooleparty\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/akameco/babel-plugin-react-intl-auto/commits?author=pooleparty\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!\n\n## License\n\nMIT © [akameco](http://akameco.github.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakameco%2Fbabel-plugin-react-intl-auto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakameco%2Fbabel-plugin-react-intl-auto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakameco%2Fbabel-plugin-react-intl-auto/lists"}