From 68ce5a34a145d0e5bf06bbdffe8059071d3f57c5 Mon Sep 17 00:00:00 2001 From: Favour Date: Fri, 14 Jun 2024 15:16:56 +0100 Subject: [PATCH] chore: update ReadMe and bump package version --- README.md | 16 +--------------- package.json | 2 +- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 241b53b..8f1bcf7 100644 --- a/README.md +++ b/README.md @@ -14,20 +14,6 @@ import { StorageKinds, } from "@BolajiOlajide/now-playing"; -const np = new NowPlaying(Providers.SPOTIFY, { - storageKind: StorageKinds.INMEMORY, -}); -``` - - -### With Spotify -```ts -import { - NowPlaying, - Providers, - StorageKinds, -} from "@BolajiOlajide/now-playing"; - const np = new NowPlaying(Providers.SPOTIFY, { storageKind: StorageKinds.INMEMORY, useCache: false, // default is true @@ -36,6 +22,6 @@ const np = new NowPlaying(Providers.SPOTIFY, { clientId: "foo", clientSecret: "bar", refreshToken: "baz", - } + }, }); ``` diff --git a/package.json b/package.json index 903aed5..aae4bb0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bolajiolajide/now-playing", - "version": "0.0.8", + "version": "0.0.9", "description": "", "main": "dist/now-playing.js", "types": "dist/now-playing.d.ts",