@optique/valibot 0.7.0-dev.144 → 0.7.0-dev.150
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,13 +15,21 @@ Installation
|
|
|
15
15
|
------------
|
|
16
16
|
|
|
17
17
|
~~~~ bash
|
|
18
|
-
deno add jsr
|
|
19
|
-
npm add
|
|
20
|
-
pnpm add
|
|
21
|
-
yarn add
|
|
22
|
-
bun add
|
|
18
|
+
deno add --jsr @optique/valibot @optique/run @optique/core @valibot/valibot
|
|
19
|
+
npm add @optique/valibot @optique/run @optique/core valibot
|
|
20
|
+
pnpm add @optique/valibot @optique/run @optique/core valibot
|
|
21
|
+
yarn add @optique/valibot @optique/run @optique/core valibot
|
|
22
|
+
bun add @optique/valibot @optique/run @optique/core valibot
|
|
23
23
|
~~~~
|
|
24
24
|
|
|
25
|
+
> [!NOTE]
|
|
26
|
+
> When using Deno, import Valibot from `@valibot/valibot` instead of `valibot`:
|
|
27
|
+
>
|
|
28
|
+
> ~~~~ typescript
|
|
29
|
+
> import * as v from "@valibot/valibot"; // Deno
|
|
30
|
+
> import * as v from "valibot"; // Node.js, Bun
|
|
31
|
+
> ~~~~
|
|
32
|
+
|
|
25
33
|
This package supports Valibot versions 0.42.0 and above.
|
|
26
34
|
|
|
27
35
|
|