From de31652d13c259c2adeb4f3a4b015d6a45204e6f Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Fri, 6 Dec 2024 13:29:02 +0100 Subject: [PATCH] docs: add notes about nightly channel --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index a54f55e..6689797 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,30 @@ await storage.getItem("foo:bar"); // or storage.getItem('/foo/bar') 👉 Check out the [the documentation](https://unstorage.unjs.io) for usage information. +## Nightly release channel + +You can use the nightly release channel to try the latest changes in the `main` branch via [`unstorage-nightly`](https://www.npmjs.com/package/unstorage-nightly). + +If directly using `unstorage` in your project: + +```json +{ + "devDependencies": { + "unstorage": "npm:unstorage-nightly" + } +} +``` + +If using `unstorage` via another tool in your project: + +```json +{ + "resolutions": { + "unstorage": "npm:unstorage-nightly" + } +} +``` + ## Contribution - Clone repository