diff options
author | Idan Amit <idan.amit@intl.att.com> | 2019-01-06 13:07:18 +0200 |
---|---|---|
committer | Idan Amit <idan.amit@intl.att.com> | 2019-01-07 17:34:23 +0200 |
commit | ebec31d19d829d93e5e0a96db3e54036c5bd1450 (patch) | |
tree | c48e474198d15b062a73e238de7cfd4505b82b54 | |
parent | bbeb590aaff56ff3364b852f6149b220581b58a1 (diff) |
Fixed readme issuedublin
Change-Id: I27c560f081daca8129534cc32bc869a24ec73b88
Issue-ID: SDC-2032
Signed-off-by: Idan Amit <idan.amit@intl.att.com>
-rw-r--r-- | .npmignore | 1 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | version.properties | 2 |
4 files changed, 6 insertions, 5 deletions
@@ -1,5 +1,6 @@ **/*.ts !**/*.d.ts +.git node_modules/ tsconfig.json webpack.config.js @@ -19,7 +19,7 @@ import {PluginPubSub} from 'sdc-pubsub' ```html <!-- index.html --> -<script src="./node_Modules/sdc-pubsub/dist/sdc-pubsub.js"></script> +<script src="./node_modules/sdc-pubsub/dist/sdc-pubsub.js"></script> ``` ```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} |