@quilted/threads
Advanced tools
Comparing version 0.0.0-preview-20240831055321 to 0.0.0-preview-20240831072309
# @quilted/threads | ||
## 0.0.0-preview-20240831055321 | ||
## 0.0.0-preview-20240831072309 | ||
### Patch Changes | ||
- Fix `ThreadSignal` initialization | ||
- More `ThreadSignal` fixes | ||
## 3.1.2 | ||
### Patch Changes | ||
- [`254b3ed`](https://github.com/lemonmade/quilt/commit/254b3ed1f419e2e9431e50861fede36333bf719e) Thanks [@lemonmade](https://github.com/lemonmade)! - More `ThreadSignal` fixes | ||
## 3.1.1 | ||
@@ -10,0 +16,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"type": "module", | ||
"version": "0.0.0-preview-20240831055321", | ||
"version": "0.0.0-preview-20240831072309", | ||
"license": "MIT", | ||
@@ -8,0 +8,0 @@ "engines": { |
@@ -85,3 +85,3 @@ import {Signal, type ReadonlySignal} from '@preact/signals-core'; | ||
const valueDescriptor = Object.getOwnPropertyDescriptor( | ||
Object.getPrototypeOf(this), | ||
Object.getPrototypeOf(Object.getPrototypeOf(this)), | ||
'value', | ||
@@ -98,3 +98,3 @@ )!; | ||
serialization.set!(value); | ||
return valueDescriptor.set?.call(signal, value); | ||
return valueDescriptor.set?.call(this, value); | ||
} | ||
@@ -106,3 +106,3 @@ : undefined, | ||
(value) => { | ||
valueDescriptor.set?.call(signal, value); | ||
valueDescriptor.set?.call(this, value); | ||
}, | ||
@@ -109,0 +109,0 @@ { |
Sorry, the diff of this file is not supported yet
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
352742