Fixed readme issue 34/75334/2 dublin
authorIdan Amit <idan.amit@intl.att.com>
Sun, 6 Jan 2019 11:07:18 +0000 (13:07 +0200)
committerIdan Amit <idan.amit@intl.att.com>
Mon, 7 Jan 2019 15:34:23 +0000 (17:34 +0200)
Change-Id: I27c560f081daca8129534cc32bc869a24ec73b88
Issue-ID: SDC-2032
Signed-off-by: Idan Amit <idan.amit@intl.att.com>
.npmignore
README.md
package.json
version.properties

index f44f617..20d2d2e 100644 (file)
@@ -1,5 +1,6 @@
 **/*.ts
 !**/*.d.ts
+.git
 node_modules/
 tsconfig.json
 webpack.config.js
index 9572095..43046fa 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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
+      }
    }
 )
 ```
index 65a23cf..f097271 100644 (file)
@@ -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",
index 9263271..cb7df5c 100644 (file)
@@ -5,7 +5,7 @@
 
 major=1
 minor=0
-patch=28
+patch=29
 
 base_version=${major}.${minor}.${patch}