From ebec31d19d829d93e5e0a96db3e54036c5bd1450 Mon Sep 17 00:00:00 2001 From: Idan Amit Date: Sun, 6 Jan 2019 13:07:18 +0200 Subject: Fixed readme issue Change-Id: I27c560f081daca8129534cc32bc869a24ec73b88 Issue-ID: SDC-2032 Signed-off-by: Idan Amit --- .npmignore | 1 + README.md | 6 +++--- package.json | 2 +- version.properties | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.npmignore b/.npmignore index f44f617..20d2d2e 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,6 @@ **/*.ts !**/*.d.ts +.git node_modules/ tsconfig.json webpack.config.js diff --git a/README.md b/README.md index 9572095..43046fa 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ import {PluginPubSub} from 'sdc-pubsub' ```html - + ``` ```javascript @@ -50,8 +50,8 @@ client.notify(“READY”) // eventData.type will hold the event name that was notified by someone else client.on((eventData,event) => { if(eventData.type == ”WINDOW_OUT”) { - //do logic - } + //do logic + } } ) ``` diff --git a/package.json b/package.json index 65a23cf..f097271 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sdc-pubsub", - "version": "1.0.28", + "version": "1.0.30", "description": "Publish Subscribe library using post message for sdc plugins", "main": "index.js", "author": "Idan Amit", diff --git a/version.properties b/version.properties index 9263271..cb7df5c 100644 --- a/version.properties +++ b/version.properties @@ -5,7 +5,7 @@ major=1 minor=0 -patch=28 +patch=29 base_version=${major}.${minor}.${patch} -- cgit 1.2.3-korg