aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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}