From 11d93fe7243c9c400fa1dcfdccaa71042a8d0a47 Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 17 Dec 2024 12:05:47 -0600 Subject: [PATCH] docs: Add pkg.pr.new docs to CONTRIBUTING.md --- CONTRIBUTING.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f09f1ccd8..d1711c4c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -145,3 +145,24 @@ pnpm dlx taze -r ``` Configuration is in [`taze.config.ts`](./taze.config.ts). + +## Install Unreleased Versions + +This repo uses https://pkg.pr.new to publish versions of all it's packages for almost every commit. You can install them via: + +```sh +npm i https://pkg.pr.new/[package-name]@[ref] +``` + +Or use one of the shorthands: + +```sh +# Install the latest build of `wxt` from a PR: +npm i https://pkg.pr.new/wxt@1283 + +# Install the latest build of `@wxt-dev/module-react` on the `main` branch +npm i https://pkg.pr.new/@wxt-dev/module-react@main + +# Install `@wxt-dev/storage` from a specific commit: +npm i https://pkg.pr.new/@wxt-dev/module-react@426f907 +```