aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIdan Amit <idan.amit@intl.att.com>2019-01-06 13:07:18 +0200
committerIdan Amit <idan.amit@intl.att.com>2019-01-07 17:34:23 +0200
commitebec31d19d829d93e5e0a96db3e54036c5bd1450 (patch)
treec48e474198d15b062a73e238de7cfd4505b82b54
parentbbeb590aaff56ff3364b852f6149b220581b58a1 (diff)
Fixed readme issuedublin
Change-Id: I27c560f081daca8129534cc32bc869a24ec73b88 Issue-ID: SDC-2032 Signed-off-by: Idan Amit <idan.amit@intl.att.com>
-rw-r--r--.npmignore1
-rw-r--r--README.md6
-rw-r--r--package.json2
-rw-r--r--version.properties2
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
<!-- 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}