docs(installation): add Continuous Releases section

This commit is contained in:
Benjamin Canac
2024-10-15 17:03:44 +02:00
parent 5385f84e0a
commit 0759e29c22

View File

@@ -138,3 +138,33 @@ export default defineNuxtConfig({
::note
This option adds the `transition-colors` class on components with hover or active states.
::
## Continuous Releases
Nuxt UI v3 uses [pkg.pr.new](https://github.com/stackblitz-labs/pkg.pr.new) for continuous preview releases, providing developers with instant access to the latest features and bug fixes without waiting for official releases.
Preview releases are automatically generated for every commit to the `v3` branch and pull requests targeting the `v3` branch. To use it into your project, use the installation command below by replacing `5385f84` with any commit hash or pull request number.
::code-group
```bash [pnpm]
pnpm add https://pkg.pr.new/@nuxt/ui@5385f84
```
```bash [yarn]
yarn add https://pkg.pr.new/@nuxt/ui@5385f84
```
```bash [npm]
npm install https://pkg.pr.new/@nuxt/ui@5385f84
```
```bash [bun]
bun add https://pkg.pr.new/@nuxt/ui@5385f84
```
::
::note
**pkg.pr.new** will automatically comment on PRs with the installation URL, making it easy to test changes.
::