Skip to content

Commit

Permalink
Update browserify entry points.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtth committed Apr 14, 2016
1 parent 95d28f2 commit c9510ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc
Submodule doc updated from f2f3b6 to 93582a
1 change: 0 additions & 1 deletion etc/browser/avsc-protocols.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ module.exports = {
Protocol: protocols.Protocol,
Type: types.Type,
assemble: schemas.assemble,
emitters: protocols.emitters,
parse: parse,
types: types.builtins
};
1 change: 0 additions & 1 deletion etc/browser/avsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ module.exports = {
Protocol: protocols.Protocol,
Type: types.Type,
assemble: schemas.assemble,
emitters: protocols.emitters,
parse: parse,
streams: containers.streams,
types: types.builtins
Expand Down
4 changes: 3 additions & 1 deletion lib/protocols.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* jshint node: true */

// TODO: Explre making `MessageEmitter` a writable stream, and
// TODO: Explore making `MessageEmitter` a writable stream, and
// `MessageListener` a readable stream. The main inconsistency is w.r.t.
// watermarks (the standard stream behavior doesn't support waiting for the
// callbacks, without also preventing concurrent requests).
Expand Down Expand Up @@ -322,6 +322,8 @@ Protocol.prototype.inspect = function () {
return f('<Protocol %j>', this._name);
};

Protocol.MessageEmitter = MessageEmitter;
Protocol.MessageListener = MessageListener;

/**
* Base message emitter class.
Expand Down

0 comments on commit c9510ef

Please sign in to comment.