{"id":32843353,"url":"https://github.com/bcgov/connect-nuxt","last_synced_at":"2026-06-11T00:01:27.349Z","repository":{"id":305221103,"uuid":"1022282309","full_name":"bcgov/connect-nuxt","owner":"bcgov","description":"Connect support in the Nuxt framework","archived":false,"fork":false,"pushed_at":"2026-06-10T16:32:18.000Z","size":4907,"stargazers_count":1,"open_issues_count":2,"forks_count":11,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-10T18:13:20.842Z","etag":null,"topics":["connect","figma","nuxt","typescript","vue"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bcgov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-18T19:13:25.000Z","updated_at":"2026-06-10T16:31:29.000Z","dependencies_parsed_at":"2026-01-06T15:13:13.831Z","dependency_job_id":null,"html_url":"https://github.com/bcgov/connect-nuxt","commit_stats":null,"previous_names":["bcgov/connect-nuxt"],"tags_count":203,"template":false,"template_full_name":null,"purl":"pkg:github/bcgov/connect-nuxt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcgov%2Fconnect-nuxt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcgov%2Fconnect-nuxt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcgov%2Fconnect-nuxt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcgov%2Fconnect-nuxt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bcgov","download_url":"https://codeload.github.com/bcgov/connect-nuxt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcgov%2Fconnect-nuxt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34175887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"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":["connect","figma","nuxt","typescript","vue"],"created_at":"2025-11-08T05:01:24.067Z","updated_at":"2026-06-11T00:01:27.300Z","avatar_url":"https://github.com/bcgov.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/License-BSD%203%20Clause-blue.svg)](LICENSE)\n\n# Connect Nuxt\nConnect support in the Nuxt framework\n\nThis monorepo contains Nuxt packages for the Connect ecosystem. It is managed using [pnpm workspaces](https://pnpm.io/workspaces) and [Changesets](https://github.com/changesets/changesets) for versioning and publishing.\n\n## Development\n\n**Prerequisites**\n- [Node](https://nodejs.org/en) (version 22.16.x or higher)\n- [pnpm](https://pnpm.io/) (version 10.x or higher)\n\n**Setup**\nCreate a fork and local copy of this repo. Answer _Y_ to create a local clone.\n```bash\ngh repo fork bcgov/connect-nuxt\n```\n\nChange into the directory and install the packages.\n```bash\npnpm install\n```\n\nStart the development environment.\n```bash\n# from monorepo root\npnpm --filter package-name dev \nor\n# from package root\npnpm run dev\n```\n\n## Testing\nRun Vitest in watch mode for unit tests\n```bash\n# from monorepo root\npnpm --filter package-name test\nor\n# from package root\npnpm test\n```\n\nRun Playwright e2e tests\n**Note: Playwright e2e tests are written against the `.playground` directory to ensure smooth integration of our common features**\n\n```bash\n# from monorepo root\npnpm --filter package-name test:e2e\nor\n# from package root\npnpm test:e2e\n```\n\n## Workspace Structure\nThis repository is organized into two main directories:\n\n- packages/: Contains all the reusable, versioned, and publishable libraries. These are the shared building blocks of our system.\n  - layers/\n    - [base](./packages/layers/base/README.md): Foundational UI components, theme, and styles.\n    - [auth](./packages/layers/auth/README.md): Authentication provider integration, composables, components and accounts.\n    - [forms](./packages/layers/forms/README.md): Common form components and validation logic.\n    - [pay](./packages/layers/pay/README.md): Components and services related to payments.\n- apps/: Contains deployable applications that consume the packages.\n\nAdditional layers can be added under the `packages/layers/` directory. Other content should be organized similarly. e.g., Modules should be created under a new `packages/modules/` directory.\n\n## Pull Request Previews\nThis repository uses [pkg-pr-new](https://github.com/stackblitz-labs/pkg.pr.new?tab=readme-ov-file) for continuous deployment of preview packages. When a pull request is opened that modifies a package, a bot will automatically post a comment with links to install the preview version.\n\nThis allows for immediate testing and validation of changes in a live environment without needing to go through the full release process. The comment will also include a link to an interactive StackBlitz environment where the changes can be reviewed.\n\n\u003e [!NOTE]\n\u003e For subsequent changes pushed to the same pull request, it is required to use the installation link that contains the direct commit hash instead of the PR number (e.g., @a1b2c3d instead of @42). This will ensure you are testing against the absolute latest version and avoid any potential caching issues with the PR number tag.\n\n## Versioning \u0026 Release Workflow\nThis monorepo uses [Changesets](https://github.com/changesets/changesets) to manage versioning, changelogs, and publishing.\n\n\u003e [!NOTE]\n\u003e Automated Versioning: Please do not manually update package versions in package.json. This monorepo uses an automated workflow where the Changesets action is responsible for all version bumps, including updating internal dependencies between packages. Please familiarize yourself with the [Changesets](https://github.com/changesets/changesets) workflow before contributing.\n\n### Adding a Change\nWhen you have made a code change in a PR that should be included in the next release, you **must** add a changeset.\n\nA detailed step-by-step guide can be found at [A Guide to the Changesets Workflow](./docs/changesets/workflow.md)\n\n1. Run the changeset command (must be done from the repo root):\n```bash\npnpm changeset\n```\n2. Follow the prompts to select the packages you've changed and the appropriate version bump (patch, minor, or major).\n3. Write a clear summary of your change. Please be descriptive as this summary will be automatically added to the CHANGELOG.md file.\n4. Commit the generated .md file to your branch.\n\n### Publishing a Release\nThe release process is automated by GitHub Actions:\n\n1. When a PR with one or more changeset files is merged into main, the Changesets action will automatically create a new \"Version Packages\" pull request.\n2. This new PR will contain all the version bumps and the updated CHANGELOG.md files.\n3. Once the \"Version Packages\" PR is reviewed and merged, the action will automatically publish the updated packages to the npm registry and create a corresponding GitHub Release.\n\n## How to Contribute\nIf you would like to contribute, please see our [CONTRIBUTING](./CONTRIBUTING.md) guidelines.\n\nPlease note that this project is released with a [Contributor Code of Conduct](./CODE_OF_CONDUCT.md).\nBy participating in this project you agree to abide by its terms.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcgov%2Fconnect-nuxt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbcgov%2Fconnect-nuxt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcgov%2Fconnect-nuxt/lists"}