From 8473a3ba756a2a70c3067b61dbf14a1b695a8688 Mon Sep 17 00:00:00 2001 From: Lucky <14868134+L-U-C-K-Y@users.noreply.github.com> Date: Mon, 28 Dec 2020 14:01:05 +0100 Subject: [PATCH 1/3] fix(README): fixed install command Fixed the install command, as v3 is available under a different npm name. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a50805..215f3c6 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ This library contains core functionalities needed to create a chat application u ## Installing ``` -$ npm i qiscus-sdk-core +$ npm i qiscus-sdk-javascript // or if you're using yarn -$ yarn add qiscus-sdk-core +$ yarn add qiscus-sdk-javascript ``` then you need to import this library into your application. From 4521cdf8171777f5139aecca842d9c9a2e6cc181 Mon Sep 17 00:00:00 2001 From: Lucky <14868134+L-U-C-K-Y@users.noreply.github.com> Date: Tue, 29 Dec 2020 16:04:03 +0100 Subject: [PATCH 2/3] fix(README): fixed import package name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 215f3c6..860eac2 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ $ yarn add qiscus-sdk-javascript then you need to import this library into your application. ``` -import QiscusSDK from 'qiscus-sdk-core'; +import QiscusSDK from 'qiscus-sdk-javascript'; const qiscus = new QiscusSDK(); ``` From 35fe50cbb55699c9e59eeddf78f3d4ea65fdaa36 Mon Sep 17 00:00:00 2001 From: Lucky <14868134+L-U-C-K-Y@users.noreply.github.com> Date: Tue, 29 Dec 2020 16:06:34 +0100 Subject: [PATCH 3/3] fix(README): added note regarding migration guide --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 860eac2..a98c4ce 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Qiscus Web SDK Core -This library contains core functionalities needed to create a chat application using qiscus. +This library contains core functionalities needed to create a chat application using qiscus. + +Check out the V3 migration guide with Typescript details here: [V3 Migration Guide](https://github.com/qiscus/qiscus-sdk-web-core/blob/v3/MIGRATION_GUIDE.md) ## Installing