New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@preact/signals-core

Package Overview
Dependencies
Maintainers
8
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@preact/signals-core - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

6

CHANGELOG.md
# @preact/signals-core
## 1.5.1
### Patch Changes
- [#451](https://github.com/preactjs/signals/pull/451) [`990f1eb`](https://github.com/preactjs/signals/commit/990f1eb36fa4ab5e30029f79ceeccf709137d14d) Thanks [@dcporter](https://github.com/dcporter)! - Removes backward-incompatible type export from signals core.
## 1.5.0

@@ -4,0 +10,0 @@

2

dist/signals-core.d.ts

@@ -22,2 +22,2 @@ declare const identifier: unique symbol;

declare function effect(compute: () => unknown | EffectCleanup): () => void;
export { signal, computed, effect, batch, Signal, type ReadonlySignal, untracked, };
export { signal, computed, effect, batch, Signal, ReadonlySignal, untracked, };
{
"name": "@preact/signals-core",
"version": "1.5.0",
"version": "1.5.1",
"license": "MIT",

@@ -36,3 +36,10 @@ "description": "Manage state with style in every framework",

"mangle": "../../mangle.json",
"files": [
"src",
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {}
}

@@ -36,2 +36,3 @@ # Signals

- [Hooks](./packages/react/README.md#hooks)
- [Rendering optimizations](./packages/react/README.md#rendering-optimizations)
- [License](#license)

@@ -38,0 +39,0 @@

@@ -8,3 +8,3 @@ function cycleDetected(): never {

const identifier = Symbol.for('preact-signals')
const identifier = Symbol.for("preact-signals");

@@ -263,3 +263,3 @@ // Flags for Computed and Effect.

Signal.prototype.brand = identifier
Signal.prototype.brand = identifier;

@@ -786,4 +786,4 @@ Signal.prototype._refresh = function () {

Signal,
type ReadonlySignal,
ReadonlySignal,
untracked,
};

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc