From 607bc4ed37b7c674a71875693d3722e55c8e8ea8 Mon Sep 17 00:00:00 2001 From: Geofrey Isiagi - Full-stack Web / Cloud Developer Date: Wed, 22 Nov 2023 09:03:40 +0300 Subject: [PATCH 1/2] Update introduction.md Adds Bun in the installation commands. --- docs/getting-started/introduction.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md index e03efc8e94..99c46ca1b5 100644 --- a/docs/getting-started/introduction.md +++ b/docs/getting-started/introduction.md @@ -36,6 +36,9 @@ npm install zustand # Yarn yarn add zustand + +# Bun +bun add zustand ``` ## First create a store From 9af1cddf8c56d5861da0f2921268195e5132cf09 Mon Sep 17 00:00:00 2001 From: Geofrey Isiagi - Full-stack Web / Cloud Developer Date: Wed, 22 Nov 2023 16:48:16 +0300 Subject: [PATCH 2/2] Update docs/getting-started/introduction.md Co-authored-by: Daishi Kato --- docs/getting-started/introduction.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md index 99c46ca1b5..4a5f81c345 100644 --- a/docs/getting-started/introduction.md +++ b/docs/getting-started/introduction.md @@ -33,12 +33,7 @@ Zustand is available as a package on NPM for use: ```bash # NPM npm install zustand - -# Yarn -yarn add zustand - -# Bun -bun add zustand +# Or, use any package manager of your choice. ``` ## First create a store