docs: add notes about nightly channel

This commit is contained in:
Pooya Parsa 2024-12-06 13:29:02 +01:00
parent 2eac3000b3
commit de31652d13

View File

@ -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. 👉 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 ## Contribution
- Clone repository - Clone repository