Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: ci
on: push
permissions:
contents: read
jobs:
ci:
runs-on: ${{ matrix.os }}
Expand All @@ -21,6 +23,8 @@ jobs:
run: pnpm install
- name: Build registry artifacts
run: pnpm run registry:build
Comment thread
hirotaka marked this conversation as resolved.
- name: Generate static output
run: pnpm run generate
- name: Lint
run: pnpm run lint
Comment thread
hirotaka marked this conversation as resolved.
- name: Typecheck
Expand Down
9 changes: 2 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,10 @@ logs
.DS_Store
.fleet
.idea
.playwright-cli/
.claude/settings.local.json

# Local env files
.env
.env.*
!.env.example

.dmux/worktrees/task-response/.data
.dmux/worktrees/task-request/.data
.dmux/worktrees/task-15-3/.data
.dmux/worktrees/task-15-5/.data
.dmux/worktrees/task-17-1/.data
.dmux/worktrees/task-17-3/.data
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project aims to make shadcn-vue easier to use in Nuxt by providing:
## What this repository includes

- **Docs site** (Nuxt 4 + Nuxt Content)
- **shadcn-vue registry output** under `public/r/*.json`
- **shadcn-vue registry builder** (`pnpm registry:build`)
- **Template and component documentation** under `content/docs`

## Use the registry
Expand Down Expand Up @@ -50,3 +50,8 @@ pnpm registry:build
```

This command generates distributable registry JSON files in `public/r/`.
`public/r/` is generated at build time and is not committed to git.

## Security

For vulnerability reporting and support policy, see `SECURITY.md`.
23 changes: 13 additions & 10 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@

## Supported Versions

Use this section to tell people about which versions of your project are
currently being supported with security updates.
Security fixes are applied to the latest version on the `main` branch.

| Version | Supported |
| ------- | ------------------ |
| 5.1.x | :white_check_mark: |
| 5.0.x | :x: |
| 4.0.x | :white_check_mark: |
| < 4.0 | :x: |
| main | :white_check_mark: |
| others | :x: |

## Reporting a Vulnerability

Use this section to tell people how to report a vulnerability.
Please use GitHub Private Vulnerability Reporting for this repository:

Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.
- https://github.com/shadcn-nuxt-ui/docs/security/advisories/new

If private reporting is unavailable for your account, open a security issue without exploit details and ask maintainers to continue in a private channel.
Comment thread
hirotaka marked this conversation as resolved.

We aim to:

- acknowledge reports within 72 hours,
- provide an initial assessment within 7 days,
- coordinate disclosure after a fix is available.
Loading