{"id":13506614,"url":"https://github.com/wemake-services/nuxt-babel","last_synced_at":"2025-10-04T22:31:44.539Z","repository":{"id":49302607,"uuid":"130895960","full_name":"wemake-services/nuxt-babel","owner":"wemake-services","description":"Use normal .babelrc file with your Nuxt app","archived":true,"fork":false,"pushed_at":"2021-06-19T07:19:15.000Z","size":997,"stargazers_count":33,"open_issues_count":10,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-29T01:17:57.565Z","etag":null,"topics":["babel","babelrc","nuxt","nuxt-module","nuxtjs","vue"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/nuxt-babel","language":"JavaScript","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/wemake-services.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"patreon":"sobolevn"}},"created_at":"2018-04-24T18:14:22.000Z","updated_at":"2023-05-03T09:05:38.000Z","dependencies_parsed_at":"2022-08-29T20:01:36.361Z","dependency_job_id":null,"html_url":"https://github.com/wemake-services/nuxt-babel","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/wemake-services/nuxt-babel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wemake-services%2Fnuxt-babel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wemake-services%2Fnuxt-babel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wemake-services%2Fnuxt-babel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wemake-services%2Fnuxt-babel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wemake-services","download_url":"https://codeload.github.com/wemake-services/nuxt-babel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wemake-services%2Fnuxt-babel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277740230,"owners_count":25868904,"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","status":"online","status_checked_at":"2025-09-30T02:00:09.208Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["babel","babelrc","nuxt","nuxt-module","nuxtjs","vue"],"created_at":"2024-08-01T01:00:54.567Z","updated_at":"2025-10-04T22:31:44.189Z","avatar_url":"https://github.com/wemake-services.png","language":"JavaScript","funding_links":["https://patreon.com/sobolevn"],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# nuxt-babel\n\n**Deprecated: Nuxt now [supports](https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-build#babel) `babelrc` natively**\n\n[![wemake.services](https://img.shields.io/badge/style-wemake.services-green.svg?label=\u0026logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](http://wemake.services) [![Build Status](https://travis-ci.org/wemake-services/nuxt-babel.svg?branch=master)](https://travis-ci.org/wemake-services/nuxt-babel) [![Coverage Status](https://coveralls.io/repos/github/wemake-services/nuxt-babel/badge.svg?branch=master)](https://coveralls.io/github/wemake-services/nuxt-babel?branch=master)\n\n\nThis plugin allows to have normal `.babelrc` file with your `nuxt` app!\n\nWhile traditional `nuxt` app\n[requires](https://nuxtjs.org/api/configuration-build/#babel)\nthat you specify all your `babel`\nconfiguration inside the `nuxt.config.js`,\nsome other tools (like `jest`)\nrequire [the traditional approach](https://babeljs.io/docs/usage/babelrc/)\nwith `.babelrc`.\n\nThis plugin gracefully injects your `.babelrc` into your `nuxt` configuration\nallowing you to have the best from both worlds.\n\nWe also support `.babelrc.js`, `babel.config.js`, and `package.json` files.\n\n\n## Installation\n\n```\nnpm install --save nuxt-babel\n```\n\nAdd `nuxt-babel` to your `nuxt.config.js`:\n\n```js\n{\n  modules: [\n    'nuxt-babel',\n  ]\n}\n```\n\n\n## Options\n\nYou can also specify directory containing your `babel` configuration:\n\n```js\n{\n  modules: [\n    ['nuxt-babel', { directory: './some/path/' },\n  ]\n}\n```\n\n\n## License\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwemake-services%2Fnuxt-babel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwemake-services%2Fnuxt-babel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwemake-services%2Fnuxt-babel/lists"}