async-call-rpc
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -5,2 +5,9 @@ # Changelog | ||
### [2.0.1](https://github.com/Jack-Works/async-call/compare/v2.0.0...v2.0.1) (2020-06-07) | ||
### Bug Fixes | ||
* wrong type path ([80c1e18](https://github.com/Jack-Works/async-call/commit/80c1e18ec093c1897eba2d48e23836ac909c7cbb)) | ||
## [2.0.0](https://github.com/Jack-Works/async-call/compare/v1.0.4...v2.0.0) (2020-06-07) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "async-call-rpc", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"type": "module", | ||
@@ -8,3 +8,3 @@ "description": "A lightweight JSON RPC server & client", | ||
"module": "out/full.mjs", | ||
"types": "./out/full.es.d.ts", | ||
"types": "./out/full.d.ts", | ||
"exports": { | ||
@@ -11,0 +11,0 @@ ".": { |
@@ -7,4 +7,8 @@ # Async Call | ||
- Runtime requirement: At least ECMAScript 6, `globalThis`, well known Symbol `Symbol.asyncIterator` if you use Async Call remote generator function support. | ||
- Runtime requirement: At least ECMAScript 6, `globalThis` | ||
- Well known Symbol `Symbol.asyncIterator` if you use AsyncCallGenerator function support. | ||
- Note: Because this library is not presuming you are using any ECMAScript engine, therefore you need to implement the MessageChannel interface (`{ on(event: string, callback: (data: unknown) => void): void; emit(event: string, data: unknown): void }`) to let this library exchange message. `emit()` on the client side should call the callback on the server side. | ||
## Entry | ||
@@ -11,0 +15,0 @@ |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
260747
39
0