From 0759e29c2257380ddd5423885bba1b832b15bc08 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Tue, 15 Oct 2024 17:03:44 +0200 Subject: [PATCH] docs(installation): add `Continuous Releases` section --- .../1.getting-started/2.installation.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/docs/content/1.getting-started/2.installation.md b/docs/content/1.getting-started/2.installation.md index 9f120b3c..6585493b 100644 --- a/docs/content/1.getting-started/2.installation.md +++ b/docs/content/1.getting-started/2.installation.md @@ -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. +::