Comparing version 1.3.5 to 1.3.6
{ | ||
"name": "pubsub-js", | ||
"version": "1.3.5", | ||
"version": "1.3.6", | ||
"description": "Dependency free publish/subscribe library", | ||
@@ -5,0 +5,0 @@ "main": "./src/pubsub.js", |
@@ -7,3 +7,3 @@ # PubSubJS | ||
PubSubJS has synchronisation decoubling, so messages are delivered asynchronously. This helps keep your program predictable as the originator of messages will not be blocked while consumers process messages. | ||
PubSubJS has synchronisation decoupling, so messages are delivered asynchronously. This helps keep your program predictable as the originator of messages will not be blocked while consumers process messages. | ||
@@ -24,2 +24,10 @@ For the adventurous, PubSubJS also supports synchronous message publication. This can give a speedup in some environments (browsers, not all), but can also lead to some very difficult to reason about programs, when one message triggers publication of another message in the same execution chain. | ||
## Getting PubSubJS | ||
There are several ways of getting PubSubJS | ||
* [Download a tagged version](https://github.com/mroderick/PubSubJS/tags) from GitHub | ||
* Install via npm (`npm install pubsub-js`) | ||
* Intall via bower (`bower install pubsub-js`) | ||
## Examples | ||
@@ -230,2 +238,8 @@ | ||
## Changelog | ||
* v1.3.6 | ||
* Add [bower](http://bower.io) support | ||
* v1.3.5 | ||
* Fix package.json, add a "main" option, for easier use with node | ||
* v1.3.4 | ||
@@ -232,0 +246,0 @@ * Updating grunt to 0.4.0 |
@@ -37,3 +37,3 @@ /* | ||
name: 'PubSubJS', | ||
version: '1.3.5' | ||
version: '1.3.6' | ||
}, | ||
@@ -40,0 +40,0 @@ messages = {}, |
@@ -13,3 +13,3 @@ /*jslint white:true, plusplus:true */ | ||
var PubSub = global.PubSub || require("../src/pubsub"), | ||
EXPECTED_VERSION = "1.3.5"; | ||
EXPECTED_VERSION = "1.3.6"; | ||
@@ -16,0 +16,0 @@ buster.testCase( "PubSub module", { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
295373
26
8622
279