Files
vercel__flags/docs/REVIEWS.md
Vincent Derks 8ff953b592 [@flags-sdk/hypertune] Deprecate the Hypertune adapter (#503)
* docs: remove Hypertune provider pages

* docs: make Vercel Flags the primary featured provider

* docs: deprecate the Hypertune page instead of removing it

* [@flags-sdk/hypertune] Deprecate the package

* docs: revert full-width Vercel card

* docs: hide Hypertune from the sidebar

* docs: use LaunchDarkly as the example in REVIEWS.md
2026-09-18 10:32:18 +02:00

1.2 KiB

How to review pull requests for packages

This documentation is intended for maintainers of this repository.

Checking out a branch of a fork

Follow the following steps to review a pull request from a fork. Replace <fork-owner> and <branch> with the GitHub user and branch of the pull request.

  • git remote add <fork-owner> git@github.com:<fork-owner>/flags.git
  • git fetch <fork-owner>
  • git checkout <fork-owner>/<branch>

Or replace the last step with:

  • git checkout -b <branch> <fork-owner>/<branch>

Testing with examples

You can try an updates to adapters with the existing examples in vercel/examples. The example uses the LaunchDarkly adapter.

  1. Build the adapter
  • cd packages/adapter-launchdarkly
  • pnpm build
  1. Try it out
  • Clone https://github.com/vercel/examples/
  • Change into flags-sdk/launchdarkly
  • Run pnpm install
  • Run vc link and link to Vercel Examples team and flags-sdk-launchdarkly project
  • Run vc env pull
  • Change the @flags-sdk/launchdarkly dependency of flags-sdk/launchdarkly/package.json to a relative path
    • "@flags-sdk/launchdarkly": "file:../../../flags/packages/adapter-launchdarkly"
  • Run pnpm install