@logux/core
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -186,3 +186,3 @@ import { createNanoEvents } from 'nanoevents' | ||
if (this.received[meta.id]) { | ||
if (this.received && this.received[meta.id]) { | ||
delete this.received[meta.id] | ||
@@ -189,0 +189,0 @@ return |
# Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
## 0.4.1 | ||
* Fix private API for Logux Server. | ||
## 0.4 ñ | ||
@@ -5,0 +8,0 @@ * Add ES modules support. |
{ | ||
"name": "@logux/core", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Logux core components", | ||
@@ -45,2 +45,7 @@ "keywords": [ | ||
}, | ||
"./connect/package.json": "./connect/package.json", | ||
"./connect": { | ||
"require": "./connect/index.cjs", | ||
"import": "./connect/index.js" | ||
}, | ||
"./debug/package.json": "./debug/package.json", | ||
@@ -51,7 +56,2 @@ "./debug": { | ||
}, | ||
"./connect/package.json": "./connect/package.json", | ||
"./connect": { | ||
"require": "./connect/index.cjs", | ||
"import": "./connect/index.js" | ||
}, | ||
"./each-store-check/package.json": "./each-store-check/package.json", | ||
@@ -58,0 +58,0 @@ "./each-store-check": { |
@@ -83,3 +83,3 @@ function sendSync (added, entries) { | ||
if (!changed) return false | ||
this.received[changed[1].id] = true | ||
if (this.received) this.received[changed[1].id] = true | ||
return this.log.add(changed[0], changed[1]) | ||
@@ -86,0 +86,0 @@ }) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
151752
0