{"id":19568308,"url":"https://github.com/vintl-dev/nuxt","last_synced_at":"2025-04-27T02:32:59.783Z","repository":{"id":155259677,"uuid":"631378485","full_name":"vintl-dev/nuxt","owner":"vintl-dev","description":"Monorepo for all things Nuxt VIntl","archived":false,"fork":false,"pushed_at":"2025-04-26T18:28:37.000Z","size":1374,"stargazers_count":1,"open_issues_count":19,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-26T19:30:57.773Z","etag":null,"topics":["i18n","intl","javascript","nuxt","nuxt-module"],"latest_commit_sha":null,"homepage":"https://vintl-nuxt.netlify.app","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/vintl-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-04-22T20:48:51.000Z","updated_at":"2024-11-20T12:47:01.000Z","dependencies_parsed_at":"2023-10-04T12:27:41.551Z","dependency_job_id":"fd1f7d26-5474-4557-a1d2-eb98f7e4344c","html_url":"https://github.com/vintl-dev/nuxt","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vintl-dev%2Fnuxt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vintl-dev%2Fnuxt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vintl-dev%2Fnuxt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vintl-dev%2Fnuxt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vintl-dev","download_url":"https://codeload.github.com/vintl-dev/nuxt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251044296,"owners_count":21527728,"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":["i18n","intl","javascript","nuxt","nuxt-module"],"created_at":"2024-11-11T06:03:29.245Z","updated_at":"2025-04-27T02:32:58.488Z","avatar_url":"https://github.com/vintl-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VIntl for Nuxt monorepo\r\n\r\nThis monorepo hosts the VIntl for Nuxt module as well as other projects that help building it.\r\n\r\n## Project structure\r\n\r\n**Legend**: 🔒 Private · 🌐 Website\r\n\r\n### Apps\r\n\r\n- [Playground](https://github.com/vintl-dev/nuxt/tree/main/apps/playground) 🔒\r\n- [Docs](https://github.com/vintl-dev/nuxt/tree/main/apps/docs) 🔒 [🌐](https://vintl-nuxt.netlify.app/)\r\n\r\n### Packages\r\n\r\n- [VIntl for Nuxt module](https://github.com/vintl-dev/nuxt/tree/main/packages/vintl-nuxt)\r\n- [ESLint config](https://github.com/vintl-dev/nuxt/tree/main/packages/eslint-config) 🔒\r\n- [Playground translations](https://github.com/vintl-dev/nuxt/tree/main/packages/translations) 🔒\r\n\r\n## Working with this monorepo\r\n\r\nIf you want to contribute a change or just want to try some changes in the project, follow the instruction below to get started.\r\n\r\n\u003e **Note** Corepack is recommended! It allows you to quickly switch package managers and their versions. As this monorepo uses pnpm, it is specified in root `package.json`, so you can use `corepack prepare --activate` to quickly switch to the version recommended for this repository. See [corepack docs](https://nodejs.org/api/corepack.html) for details.\r\n\r\n1. **Clone the repository**\r\n\r\n   ```bash\r\n   git clone https://github.com/vintl-dev/nuxt.git vintl-nuxt\r\n   cd vintl-nuxt\r\n   ```\r\n\r\n2. **Install dependencies**\r\n\r\n   ```bash\r\n   pnpm install\r\n   ```\r\n\r\n3. **Prepare apps** (optional)\r\n\r\n   This will build the module and prepare all the apps, such as sandbox and docs.\r\n\r\n   ```\r\n   pnpm all:prepare\r\n   ```\r\n\r\n4. **Build module**\r\n\r\n   ```bash\r\n   pnpm mod:build\r\n   ```\r\n\r\n5. **Start playground**\r\n\r\n   Running playground in dev mode you can play and test that the module works in a regular Nuxt project.\r\n\r\n   ```bash\r\n   pnpm pg:dev\r\n   ```\r\n\r\n6. **Create a changeset**\r\n\r\n   If you want to make a contribution to the module, make a changeset. This will ask you about the level of change (patch, minor or major) and the description of the change made.\r\n\r\n   You don't need changesets for private packages (like playground).\r\n\r\n   ```bash\r\n   pnpm changeset\r\n   ```\r\n\r\n\u003e **Warning** Do not run commands like `pnpm add` when your working directory is not set to the monorepo root. `pnpm` seems to ignore top-level `.npmrc` and will reinstall dependency tree in a manner currently incompatible with Nuxt. Use `pnpm --filter \u003cpkg/relative-path\u003e add` from the root. A lot of convenient scripts utilising Turborepo are also available in monorepo's `package.json`. You rarely need to `cd` into subdirectories.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvintl-dev%2Fnuxt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvintl-dev%2Fnuxt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvintl-dev%2Fnuxt/lists"}